diff options
author | Tobias Menzi | 2022-06-27 08:09:34 +0000 |
---|---|---|
committer | GitHub | 2022-06-27 08:09:34 +0000 |
commit | 8dc86beabd9334d013291656313cb33a88754c42 (patch) | |
tree | 8407d9e6d4a06e1bb2366a3bee44697c194ae4ac /book | |
parent | a26943de4e421a453371aa53b3bb11a2baabff56 (diff) |
Implement cursorline (#2170)
* Implement cursorline
* Binary search possible lines
Diffstat (limited to 'book')
-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 3fa9b307..af85379f 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -37,6 +37,7 @@ hidden = false | `scroll-lines` | Number of lines to scroll per scroll wheel step. | `3` | | `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` | | `gutters` | Gutters to display: Available are `diagnostics` and `line-numbers`, note that `diagnostics` also includes other features like breakpoints | `["diagnostics", "line-numbers"]` | | `auto-completion` | Enable automatic pop up of auto-completion. | `true` | | `auto-format` | Enable automatic formatting on save. | `true` | |