-
Notifications
You must be signed in to change notification settings - Fork 23
/
KiteSublime.sublime-settings
49 lines (38 loc) · 1.84 KB
/
KiteSublime.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
// WARNING: This settings file is reverted everytime the Kite package is
// updated. Any changes you make to this file will be lost when this
// happens. It's recommended that you change settings in the user settings
// file in `Packages/User/KiteSublime.package-settings`.
{
// Start the Kite Engine on startup.
"start_kite_engine_on_startup": true,
// Show the help dialog on startup.
"show_help_dialog": true,
// Enable snippet completions.
"enable_snippets": true,
// Show a clickable decoration on the cursor line that starts a line-based search for related code.
"enable_codefinder_line_phantom": false,
// Show the hover popup when the mouse hovers over a symbol.
"show_hover": true,
// Show function signatures automatically when editing a function call.
"show_function_signatures": true,
// Show inferred keyword arguments when displaying the function signature
// panel.
"show_keyword_arguments": false,
// Show popular patterns for calling functions when displaying the function
// signature panel.
"show_popular_patterns": false,
// For users of Vintage, this setting controls whether or not hiding
// signatures with escape will also cause the editor to enter command mode.
"hide_signatures_enters_command_mode": true,
// Controls whether or not text should be replaced after a completion
// is selected. This is necessary for completions for dictionary keys and
// partially typed states.
"replace_text_after_commit_completion": true,
// Period of time in milliseconds to wait before timing out requests to the
// Kite Engine. Setting this value too high may cause Kite's features to
// appear laggy. Conversely, setting this value too low may cause Kite's
// features to never show up. Default value is 200ms.
"engine_timeout": 200,
// Enable verbose logging in the console.
"verbose_logs": false
}