forked from colinta/SublimeFileDiffs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileDiffs.sublime-settings
61 lines (54 loc) · 2.13 KB
/
FileDiffs.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
* Just uncomment one of the examples or write your own command.
* NOTE: Copy/paste example below or write your own command in: Package Settings --> FileDiffs --> Settings - User
* This file will be overwritten if the package is updated.
*
* You can set a command like this:
* "cmd": ["command", "$file1", "$file2"]
*
* You can also include other command line parameters like this:
* "cmd": ["command", "-parameter1", "-parameter2", "$file1", "$file2"]
*
* The "command" argument is different depending on your system, for instance
* you might need to prefix /usr/local/bin, or use another explicit path.
*/
{
/*
* Specify third party diff tool.
*/
// "cmd": ["opendiff", "$file1", "$file2"], // opendiff (FileMerge)
// "cmd": ["ksdiff", "$file1", "$file2"], // ksdiff (Kaleidoscope)
// "cmd": ["twdiff", "$file1", "$file2"], // twdiff (Textwrangler)
// "cmd": ["bbdiff", "$file1", "$file2"], // bbdiff (BBEdit) NOTE: Use example below if you receive error.
// "cmd": ["/usr/local/bin/bbdiff", "$file1", "$file2"], // bbdiff (BBEdit)
// "cmd": ["deltawalker", "-nosplash", "$file1", "$file2"], // deltawalker (DeltaWalker)
// "cmd": ["/usr/local/bin/bcomp", "$file1", "$file2"], // bcomp (Beyond Compare) NOTE: Requires Beyond Compare Command Line Tools (Beyond Compare > Install Command Line Tools).
/*
* Open the diff within Sublime Text.
*/
// "open_in_sublime": false,
/*
* Trim whitespace before diff.
*/
// "trim_trailing_white_space_before_diff": false,
/*
* Expand full file name in tab.
*/
// "expand_full_file_name_in_tab": false,
/*
* Apply tempfile changes after diff tool.
*/
// "apply_tempfile_changes_after_diff_tool": false,
/*
* Maximum number of files to include in a single diff.
*/
// "limit": 1000,
/*
* Reverses "diff with clipboard" direction.
*/
// "reverse_clipboard": true,
/*
* Number of context lines. Defaults to 3. For full context, set it as "full".
*/
// "context_lines": 3,
}