diff options
author | Lewis Russell <lewis6991@gmail.com> | 2025-01-13 06:58:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-13 06:58:33 +0000 |
commit | 99c4bd2f698345fd5706e0ff5d6221b8d3848cfb (patch) | |
tree | dbc073be79677c642c11835427ced264b80b547d /runtime/lua/vim/_meta/options.lua | |
parent | f4cff3077b21ba110bc498f3e9331c16d3121cb1 (diff) | |
parent | bd4ca22d0334a3323313dfd6975a80218ec65e36 (diff) | |
download | rneovim-99c4bd2f698345fd5706e0ff5d6221b8d3848cfb.tar.gz rneovim-99c4bd2f698345fd5706e0ff5d6221b8d3848cfb.tar.bz2 rneovim-99c4bd2f698345fd5706e0ff5d6221b8d3848cfb.zip |
Merge pull request #31631 from ribru17/async_parse_attempt_2
feat(treesitter): async parsing
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index 940441a849..c9871c8660 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -4845,8 +4845,8 @@ vim.go.redrawdebug = vim.o.redrawdebug vim.go.rdb = vim.go.redrawdebug --- Time in milliseconds for redrawing the display. Applies to ---- 'hlsearch', 'inccommand', `:match` highlighting and syntax ---- highlighting. +--- 'hlsearch', 'inccommand', `:match` highlighting, syntax highlighting, +--- and async `LanguageTree:parse()`. --- When redrawing takes more than this many milliseconds no further --- matches will be highlighted. --- For syntax highlighting the time applies per window. When over the |