diff options
author | kevinhwang91 <kevin.hwang@live.com> | 2021-05-04 00:05:45 +0800 |
---|---|---|
committer | kevinhwang91 <kevin.hwang@live.com> | 2021-05-20 00:16:07 +0800 |
commit | ebe1a08366d71ab33b8b94239227d8105c43543e (patch) | |
tree | 574e803b2d7657d0856f33036b5417613c601618 /runtime/doc/options.txt | |
parent | 52ca7f1a26e4da95f3b3b00670252cfdf788a011 (diff) | |
download | rneovim-ebe1a08366d71ab33b8b94239227d8105c43543e.tar.gz rneovim-ebe1a08366d71ab33b8b94239227d8105c43543e.tar.bz2 rneovim-ebe1a08366d71ab33b8b94239227d8105c43543e.zip |
vim-patch:8.2.0869: it is not possible to customize the quickfix window contents
Problem: It is not possible to customize the quickfix window contents.
Solution: Add 'quickfixtextfunc'. (Yegappan Lakshmanan, closes vim/vim#5465)
https://github.com/vim/vim/commit/858ba06d5f577b187da0367b231f7fa9461cb32d
Diffstat (limited to 'runtime/doc/options.txt')
-rw-r--r-- | runtime/doc/options.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 4a6ae0245b..4a8f56da9a 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -4603,6 +4603,19 @@ A jump table for the options with a short description can be found at |Q_op|. This option cannot be set from a |modeline| or in the |sandbox|, for security reasons. + *'quickfixtextfunc'* *'qftf'* +'quickfixtextfunc' 'qftf' string (default "") + global + This option specifies a function to be used to get the text to display + in the quickfix and location list windows. This can be used to + customize the information displayed in the quickfix or location window + for each entry in the corresponding quickfix or location list. See + |quickfix-window-function| for an explanation of how to write the + function and an example. + + This option cannot be set from a |modeline| or in the |sandbox|, for + security reasons. + *'quoteescape'* *'qe'* 'quoteescape' 'qe' string (default "\") local to buffer |