forked from facelessuser/EasyDiff
-
Notifications
You must be signed in to change notification settings - Fork 5
/
easy_diff.sublime-settings
62 lines (44 loc) · 1.43 KB
/
easy_diff.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
62
{
// Show internal diff options (Easy Diff in a view or buffer)
"show_internal": true,
// Show external options (options to send files to external diff tool)
"show_external": false,
// External diff tool path (absolute)
"external_diff": "",
// SVN path
"svn": "",
// Git Path
"git": "",
// (Mercurial) Hg path
"hg": "",
// Turn off svn completely
"svn_disabled": false,
// Turn off git completely
"git_disabled": false,
// Turn off (Mercurial) hg completely
"hg_disabled": false,
// Turn off svn menu access
"svn_hide_menu": false,
// Turn off git menu access
"git_hide_menu": false,
// Turn off (Mercurial) hg menu access
"hg_hide_menu": false,
// Menus to show (view|tab|sidebar)
"menu_types": ["view", "tab", "sidebar"],
// Do not perform a version check on files
// when evaluating whether version control
// commands are enabled. May avoid slowing
// down context menu draw in large version
// controlled projects.
"skip_version_check_on_is_enabled": false,
// Use a buffer instead of the output panel
"use_buffer": true,
// Enable clipboard commands
"use_clipboard": true,
// Enable selection commands
"use_selections": true,
// If enabled, this allows for multiple selections.
// Each selection is separated with a new line.
"multi_select": false,
"use_sub_notify": true
}