diff options
author | Quentin | 2024-03-25 01:29:36 +0000 |
---|---|---|
committer | GitHub | 2024-03-25 01:29:36 +0000 |
commit | 614a744d24e54225eae2ad0d27719b81c0cf9a4d (patch) | |
tree | d7d70ed5ffa7d883ddc6c9d2ac96ac5c8e4fa1dc /book | |
parent | 2d9e336f640cccdd347e35289c3e4c0371777a3f (diff) |
Add narrow no-break space support (#9604)
Diffstat (limited to 'book')
-rw-r--r-- | book/src/configuration.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/book/src/configuration.md b/book/src/configuration.md index c55426c0..83ab3f6b 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -255,8 +255,8 @@ Options for rendering whitespace with visible characters. Use `:set whitespace.r | Key | Description | Default | |-----|-------------|---------| -| `render` | Whether to render whitespace. May either be `"all"` or `"none"`, or a table with sub-keys `space`, `nbsp`, `tab`, and `newline` | `"none"` | -| `characters` | Literal characters to use when rendering whitespace. Sub-keys may be any of `tab`, `space`, `nbsp`, `newline` or `tabpad` | See example below | +| `render` | Whether to render whitespace. May either be `"all"` or `"none"`, or a table with sub-keys `space`, `nbsp`, `nnbsp`, `tab`, and `newline` | `"none"` | +| `characters` | Literal characters to use when rendering whitespace. Sub-keys may be any of `tab`, `space`, `nbsp`, `nnbsp`, `newline` or `tabpad` | See example below | Example @@ -267,11 +267,14 @@ render = "all" [editor.whitespace.render] space = "all" tab = "all" +nbsp = "none" +nnbsp = "none" newline = "none" [editor.whitespace.characters] space = "·" nbsp = "⍽" +nnbsp = "␣" tab = "→" newline = "⏎" tabpad = "·" # Tabs will look like "→···" (depending on tab width) |