forked from 10xSebastian/SublimeFileDiffs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileDiffs.sublime-settings
More file actions
33 lines (24 loc) · 1.07 KB
/
FileDiffs.sublime-settings
File metadata and controls
33 lines (24 loc) · 1.07 KB
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
//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"]
{
// 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.
// opendiff (FileMerge)
//"cmd": ["opendiff", "$file1", "$file2"]
// ksdiff (Kaleidoscope)
//"cmd": ["ksdiff", "$file1", "$file2"]
//twdiff (Textwrangler)
//"cmd": ["twdiff", "$file1", "$file2"]
//bbdiff (BBEdit) NOTE: Use example below if you receive error.
//"cmd": ["bbdiff", "$file1", "$file2"]
//bbdiff (BBEdit)
//"cmd" ["/usr/local/bin/bbdiff", "$file1", "$file2"]
//deltawalker (DeltaWalker)
//"cmd": ["deltawalker", "-nosplash", "$file1", "$file2"]
//tortoiseMerge
//"cmd": ["tortoiseMerge", "/base:$file1", "/basename:$caption1", "/mine:$file2", "/minename:$caption2"]
}