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 /src/nvim/options.lua | |
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 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index d12b31bcaf..86dec74f56 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2074,6 +2074,14 @@ return { defaults={if_true={vi=0}} }, { + full_name='quickfixtextfunc', abbreviation='qftf', + short_desc=N_("customize the quickfix window"), + type='string', scope={'global'}, + vi_def=true, + varname='p_qftf', + defaults={if_true={vi=""}} + }, + { full_name='quoteescape', abbreviation='qe', short_desc=N_("escape characters used in a string"), type='string', scope={'buffer'}, |