|
1 | | -*markit.txt* For Neovim >= 0.8.0 Last change: 2025 September 11 |
| 1 | +*markit.txt* For Neovim >= 0.8.0 Last change: 2025 October 05 |
2 | 2 |
|
3 | 3 | ============================================================================== |
4 | 4 | Table of Contents *markit-table-of-contents* |
@@ -73,7 +73,9 @@ CONFIGURATION ~ |
73 | 73 | excluded_filetypes = {}, |
74 | 74 | -- disables mark tracking for specific buftypes. default {} |
75 | 75 | excluded_buftypes = {}, |
76 | | - -- bookmark groups configuration |
| 76 | + -- whether to enable the bookmark system. when disabled, improves startup performance, default true |
| 77 | + enable_bookmarks = true, |
| 78 | + -- bookmark groups configuration (only used when enable_bookmarks = true) |
77 | 79 | bookmarks = { |
78 | 80 | { |
79 | 81 | sign = "⚑", -- string: sign character to display (empty string to disable) |
@@ -153,10 +155,10 @@ COMMAND SCOPES ~ |
153 | 155 | The unified command system supports different scopes for filtering marks and |
154 | 156 | bookmarks: |
155 | 157 |
|
156 | | -- **buffer**Show only marks/bookmarks in the current buffer |
157 | | -- **project**Show marks/bookmarks within the current git repository (uses `git rev-parse --show-toplevel`) |
158 | | -- **all**Show all marks/bookmarks across all buffers |
159 | | -- **0-9**(Bookmarks only) Show bookmarks from a specific group |
| 158 | +- **buffer**: Show only marks/bookmarks in the current buffer |
| 159 | +- **project**: Show marks/bookmarks within the current git repository (uses `git rev-parse --show-toplevel`) |
| 160 | +- **all**: Show all marks/bookmarks across all buffers |
| 161 | +- **0-9**: (Bookmarks only) Show bookmarks from a specific group |
160 | 162 |
|
161 | 163 | **Examples:** |
162 | 164 |
|
|
0 commit comments