diff options
author | zeertzjq <zeertzjq@outlook.com> | 2025-04-09 07:40:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-09 07:40:55 +0800 |
commit | c73a827564083b4dadb3a70468466306fb416d08 (patch) | |
tree | 6d29f7646be4b89a5f86f50a29f95896b282ebe4 /src/nvim/options.lua | |
parent | 3647b821ea69ea095ccc4bf8c265df474333a5d5 (diff) | |
download | rneovim-c73a827564083b4dadb3a70468466306fb416d08.tar.gz rneovim-c73a827564083b4dadb3a70468466306fb416d08.tar.bz2 rneovim-c73a827564083b4dadb3a70468466306fb416d08.zip |
vim-patch:9.1.1288: Using wrong window in ll_resize_stack() (#33397)
Problem: Using wrong window in ll_resize_stack()
(after v9.1.1287)
Solution: Use "wp" instead of "curwin", even though they are always the
same value. Fix typos in documentation (zeertzjq).
closes: vim/vim#17080
https://github.com/vim/vim/commit/b71f1309a210bf8f61a24f4eda336de64c6f0a07
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index e9fa18c98f..e687490704 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -5046,13 +5046,12 @@ local options = { cb = 'did_set_xhistory', defaults = 10, desc = [=[ - Like 'chistory', but for the location list stack associated with the - current window. If the option is changed in either the location list - window itself or the the window that is associated with the location - list stack, the new value will also be applied to the other one. This - means this value will always be the same for a given location list - window and its corresponding window. See |quickfix-stack| for - additional info. + Like 'chistory', but for the location list stack associated with a + window. If the option is changed in either the location list window + itself or the window that is associated with the location list stack, + the new value will also be applied to the other one. This means this + value will always be the same for a given location list window and its + corresponding window. See |quickfix-stack| for additional info. ]=], full_name = 'lhistory', scope = { 'win' }, |