-
Notifications
You must be signed in to change notification settings - Fork 18
/
SBSCompare.sublime-settings
42 lines (31 loc) · 1.34 KB
/
SBSCompare.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
{
// should filenames show full paths underneath them?
"expanded_filenames": true,
// make the comparison output read only (recommended)
"read_only": true,
// toggle the sidebar on/off upon opening the comparison output window
// turn this on if you usually have the sidebar open in your main window
"toggle_sidebar": true,
// toggle the top menu on/off upon opening the comparison output window
// turn this on if you usually have the menu hidden in your main window
"toggle_menu": true,
// syntax colour name to use for code removed from column A
"remove_colour": "invalid.illegal",
// syntax colour name to use for code added in column B
"add_colour": "string",
// syntax colour name to use for intraline diffs
"modified_colour": "support.class",
// enable or disable intraline diffing
"enable_intraline": true,
// highlight intraline empty space where characters are missing
// useful, but can get a rather chaotic looking
"intraline_emptyspace": false,
// only draw outlines (no background colour filling)
// note: fill highlighting (false) only works on ST3
// ST2 will always use outlines only
"outlines_only": false,
// show a popup after comparison counting # of lines added/removed/total
"line_count_popup": true,
// open in tab or new window
"open_in_tab": false
}