-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathPreferences.sublime-settings-hints
More file actions
46 lines (42 loc) · 2.08 KB
/
Preferences.sublime-settings-hints
File metadata and controls
46 lines (42 loc) · 2.08 KB
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
// PackageDev hints file of available user or project-specific preferences.
{
// If supported, format the pasted text.
"lsp_format_on_paste": false,
// If supported, format a file before saving.
// This option is also supported in syntax-specific settings and/or in the
// "settings" section of project files.
"lsp_format_on_save": false,
// A dictionary of code action identifiers that should be triggered on save.
//
// Code action identifiers are not officially standardized so refer to specific
// server's documentation on what is supported but `source.fixAll` is commonly
// used to apply fix-on-save code actions.
//
// This option is also supported in syntax-specific settings and/or in the
// "settings" section of project files. Settings from all those places will be
// merged and more specific (syntax and project) settings will override less
// specific (from LSP or Sublime settings).
//
// Only "source.*" actions are supported.
"lsp_code_actions_on_save": {},
// A dictionary of code action identifiers that should be triggered on format.
//
// These will also be triggered when `lsp_format_on_save` is enabled.
// Code action identifiers are not officially standardized so refer to specific
// server's documentation on what is supported but `source.fixAll` is commonly
// used to apply fix-on-format code actions.
//
// This option is also supported in syntax-specific settings and/or in the
// "settings" section of project files. Settings from all those places will be
// merged and more specific (syntax and project) settings will override less
// specific (from LSP or Sublime settings).
//
// Only "source.*" actions are supported.
"lsp_code_actions_on_format": {},
// The dictionary of your configured language servers or overrides for
// existing configurations. The keys of this dictionary are free-form. They
// give a humany-friendly name to the server configuration. They are shown
// in the bottom-left corner in the status bar once attached to a view
// (unless you have "show_view_status" set to `false`).
"LSP": {}
}