-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Preferences.sublime-settings-hints
95 lines (73 loc) · 2.83 KB
/
Preferences.sublime-settings-hints
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
// A list of valid spell checker words added by the user.
"added_words": [],
// Disable auto completion entirely, even when explictly requested.
// Added in 405x.
"auto_complete_disabled": false,
// Disable auto completions from (all third-party) plugins entirely,
// even when explictly requested. Mainly for plugin developers for testing.
// Added in 4057.
"auto_complete_enable_plugins": true,
// Show the auto completion popup when a completion is likely to be requested.
// Added in 40xx.
"auto_complete_when_likely": true,
// Set the context menu for this view (type).
// Expects a ".sublime-menu" file name.
// Useful for plugins that create widget-like views or output panels.
// Added in 405x.
"context_menu": null,
// The default extension to be shown for new untitled files
// in the OS file save manager.
"default_extension": "",
// UI scaling factor (deprecated)
// Removed in 3181.
"dpi_scale": 1.0,
// Draw UI shadows
// when the buffer doesn't fit into the view horizontally.
"draw_shadows": true,
// List of extensions that should be opened with a corresponding syntax.
// Only makes sense in syntax-specific settings.
"extensions": [],
// Use the themed title bar on Linux. Disabled by default for non-gnome DE's
// or when `XDG_CURRENT_DESKTOP` is not set.
// Added in 4097.
"gtk_client_side_window_decorations": false,
// Whether the new key translation behavior should be used.
// Added in 4103.
"gtk_enable_key_translation": true,
// Hide the mouse pointer while typing.
"hide_pointer_while_typing": true,
// A list of words ignored by the spell checker.
"ignored_words": [],
// Emulate a block caret.
// Deprecated by `block_caret` (3190).
"inverse_caret_state": false,
// Show the first completion candidate as a phantom.
// Experimental setting since 4057.
"mini_auto_complete": false,
// Scroll to the clicked location
// instead of using the minimap as an extension of the scrollbar.
// Disabling this allows dragging the minimap from anywhere.
"minimap_scroll_to_clicked_text": true,
// Scroll over the tab bar to switch tabs.
"mouse_wheel_switches_tabs": false,
// Renders all characters as dots.
// Only useful for password input panels.
"password": false,
// Choose a browser to print the current view based on
// https://docs.python.org/3/library/webbrowser.html#webbrowser.get
// Added in 4094.
"print_using_browser": null,
// Shows legacy color schemes in UI: Select Color Scheme.
// Added in 3136.
"show_legacy_color_schemes": false,
// Path to the syntax definition for a view.
// To be used in widget settings files.
"syntax": "Packages/Text/Plain text.tmLanguage",
// Check for updates on startup.
// Only available to registered users.
"update_check": true,
// Increases width of the caret (deprecated).
// Use `caret_extra_width` instead.
"wide_caret": false,
}