Skip to content

Commit 5c1c51a

Browse files
committed
Conflicts: FileDiffs.sublime-settings
2 parents 5bf3553 + e67f73f commit 5c1c51a

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

FileDiffs.sublime-settings

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1-
{
1+
// You can set a command like this
2+
// "cmd": ["command", "$file1", "$file2"]
3+
4+
// You can also include other command line parameters like this
5+
// "cmd": ["command", "-parameter1", "-parameter2", "$file1", "$file2"]
26

7+
{
38
// just uncomment one of the examples
49
// or write your own command
10+
// NOTE: Copy/paste example below or write your own command in: Package Settings --> FileDiffs --> Settings - User
11+
// This file will be overwritten if the package is updated.
512

613
// opendiff (FileMerge)
714
// "cmd": ["opendiff", "$file1", "$file2"]
@@ -10,4 +17,15 @@
1017
// "cmd": ["ksdiff", "$file1", "$file2"]
1118

1219
// "open_in_sublime": false
13-
}
20+
// twdiff (Textwrangler)
21+
// "cmd": ["twdiff", "$file1", "$file2"]
22+
23+
// bbdiff (BBEdit) NOTE: Use example below if you receive error.
24+
// "cmd": ["bbdiff", "$file1", "$file2"]
25+
26+
// bbdiff (BBEdit)
27+
// "cmd" ["/usr/local/bin/bbdiff", "$file1", "$file2"]
28+
29+
// deltawalker (DeltaWalker)
30+
// "cmd": ["deltawalker", "-nosplash", "$file1", "$file2"]
31+
}

0 commit comments

Comments
 (0)