diff options
author | A-Walrus | 2022-10-08 18:28:42 +0000 |
---|---|---|
committer | GitHub | 2022-10-08 18:28:42 +0000 |
commit | c15f1ea274d300feb23208324aa5b27d7274bebd (patch) | |
tree | f606f8a30b0e9061c35f9af83b791771a5931946 /book/src/configuration.md | |
parent | 18cfe864f44e9d97f11335b7db14e28c804ea794 (diff) |
Add cursorcolumn (#4084)
* Implement cursorcolumn
* Add documentation
* Separate column style from line with fallback
* Fallback to cursorcolumn first
* Switch to non-fallback try_get_exact
Add new function `try_get_exact`, which doesn't perform fallback,
and use that instead because the fallback behaviour is being handled
manually.
Diffstat (limited to 'book/src/configuration.md')
-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 4761ebe4..707102f6 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -45,6 +45,7 @@ on unix operating systems. | `shell` | Shell to use when running external commands. | Unix: `["sh", "-c"]`<br/>Windows: `["cmd", "/C"]` | | `line-number` | Line number display: `absolute` simply shows each line's number, while `relative` shows the distance from the current line. When unfocused or in insert mode, `relative` will still show absolute line numbers. | `absolute` | | `cursorline` | Highlight all lines with a cursor. | `false` | +| `cursorcolumn` | Highlight all columns with a cursor. | `false` | | `gutters` | Gutters to display: Available are `diagnostics` and `line-numbers` and `spacer`, note that `diagnostics` also includes other features like breakpoints, 1-width padding will be inserted if gutters is non-empty | `["diagnostics", "line-numbers"]` | | `auto-completion` | Enable automatic pop up of auto-completion. | `true` | | `auto-format` | Enable automatic formatting on save. | `true` | |