diff options
author | lurpahi | 2021-09-24 01:28:44 +0000 |
---|---|---|
committer | GitHub | 2021-09-24 01:28:44 +0000 |
commit | a958d34bfbcf45c01ce0d9c0d76e681fb863fc6a (patch) | |
tree | 7993d194fafd1d32806538fe34292b6ae37429b8 /book/src | |
parent | 432bec10eddb3f51f3a6e32aedbfd566d74cde75 (diff) |
Add option for automatic insertion of closing-parens/brackets/etc (#779)
* Add auto-pair editor option
* Document auto-pair editor option
* Make cargo fmt happy
* Actually make cargo fmt happy
* Rename auto-pair option to auto-pairs
* Inline a few constants
Co-authored-by: miaomai <cunso@tutanota.com>
Diffstat (limited to 'book/src')
-rw-r--r-- | book/src/configuration.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/book/src/configuration.md b/book/src/configuration.md index 90cdd8a7..60b12bfd 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -18,6 +18,7 @@ To override global configuration parameters, create a `config.toml` file located | `shell` | Shell to use when running external commands. | Unix: `["sh", "-c"]`<br/>Windows: `["cmd", "/C"]` | | `line-number` | Line number display (`absolute`, `relative`) | `absolute` | | `smart-case` | Enable smart case regex searching (case insensitive unless pattern contains upper case characters) | `true` | +| `auto-pairs` | Enable automatic insertion of pairs to parenthese, brackets, etc. | `true` | ## LSP |