diff --git a/LSP.sublime-settings b/LSP.sublime-settings index 20d21aa2f..4a84fd54f 100644 --- a/LSP.sublime-settings +++ b/LSP.sublime-settings @@ -7,10 +7,10 @@ // --- Document Formatting ------------------------------------------------------------ - // Run the server's documentRangeFormattingProvider (if supported) on the pasted text. + // If supported, format the pasted text. "lsp_format_on_paste": false, - // Run the server's formatProvider (if supported) on a file before saving. + // 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, diff --git a/sublime-package.json b/sublime-package.json index 62bb2434b..632870d7f 100644 --- a/sublime-package.json +++ b/sublime-package.json @@ -9,12 +9,12 @@ "lsp_format_on_paste": { "type": "boolean", "default": false, - "markdownDescription": "Run the server's documentRangeFormattingProvider (if supported) on the pasted text." + "markdownDescription": "If supported, format the pasted text." }, "lsp_format_on_save": { "type": "boolean", "default": false, - "markdownDescription": "Run the server's formatProvider (if supported) on a document before saving. This option is also supported in syntax-specific settings and/or in the `\"settings\"` section of project files." + "markdownDescription": "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_code_actions_on_save": { "type": "object",