From 41f52d74fecb825a81e7026e626d5c4ad06ab9c0 Mon Sep 17 00:00:00 2001 From: LeoniePhiline <22329650+LeoniePhiline@users.noreply.github.com> Date: Sat, 20 May 2023 02:27:21 +0200 Subject: [PATCH] fix(docs): Remove `config` from language configuration docs (#7082) --- book/src/languages.md | 1 - 1 file changed, 1 deletion(-) diff --git a/book/src/languages.md b/book/src/languages.md index e28ebb5a..c334186b 100644 --- a/book/src/languages.md +++ b/book/src/languages.md @@ -64,7 +64,6 @@ These configuration keys are available: | `comment-token` | The token to use as a comment-token | | `indent` | The indent to use. Has sub keys `unit` (the text inserted into the document when indenting; usually set to N spaces or `"\t"` for tabs) and `tab-width` (the number of spaces rendered for a tab) | | `language-servers` | The Language Servers used for this language. See below for more information in the section [Configuring Language Servers for a language](#configuring-language-servers-for-a-language) | -| `config` | Language Server configuration | | `grammar` | The tree-sitter grammar to use (defaults to the value of `name`) | | `formatter` | The formatter for the language, it will take precedence over the lsp when defined. The formatter must be able to take the original file as input from stdin and write the formatted file to stdout | | `text-width` | Maximum line length. Used for the `:reflow` command and soft-wrapping if `soft-wrap.wrap-at-text-width` is set, defaults to `editor.text-width` |