diff options
author | kevinhwang91 <kevin.hwang@live.com> | 2021-05-04 13:55:38 +0800 |
---|---|---|
committer | kevinhwang91 <kevin.hwang@live.com> | 2021-05-20 00:19:25 +0800 |
commit | 00246d7be550cf990dac7e49903519f5dd68e89c (patch) | |
tree | 08324b758fc3d0ea82d1de855cd8146225289c92 /runtime | |
parent | ebe1a08366d71ab33b8b94239227d8105c43543e (diff) | |
download | rneovim-00246d7be550cf990dac7e49903519f5dd68e89c.tar.gz rneovim-00246d7be550cf990dac7e49903519f5dd68e89c.tar.bz2 rneovim-00246d7be550cf990dac7e49903519f5dd68e89c.zip |
vim-patch:8.2.0933: 'quickfixtextfunc' does not get window ID of location list
Problem: 'quickfixtextfunc' does not get window ID of location list.
Solution: Add "winid" to the dict argument. (Yegappan Lakshmanan,
closes vim/vim#6222)
https://github.com/vim/vim/commit/7ba5a7eff335dcce25afaa154f32eeadb6014b61
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/quickfix.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index efa147c324..1198c097fe 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -1915,6 +1915,9 @@ following fields: quickfix set to 1 when called for a quickfix list and 0 when called for a location list. + winid for a location list, set to the id of the window with the + location list. For a quickfix list, set to 0. Can be used in + getloclist() to get the location list entry. id quickfix or location list identifier idx index of the entry in the quickfix or location list |