diff options
author | raichoo <raichoo@googlemail.com> | 2017-03-09 17:33:51 +0100 |
---|---|---|
committer | raichoo <raichoo@googlemail.com> | 2017-03-19 21:14:11 +0100 |
commit | 0f5c3f111ab130f5cbb5943082ea5e877c1c2f4c (patch) | |
tree | 6ef5b9a051b32a9e8577150f2ab05f993a0fe07d /runtime | |
parent | 2ad25c04663da7d08da94db84dc6ded7df11ea87 (diff) | |
download | rneovim-0f5c3f111ab130f5cbb5943082ea5e877c1c2f4c.tar.gz rneovim-0f5c3f111ab130f5cbb5943082ea5e877c1c2f4c.tar.bz2 rneovim-0f5c3f111ab130f5cbb5943082ea5e877c1c2f4c.zip |
vim-patch:8.0.0179
Problem: 'formatprg' is a global option but the value may depend on the
type of buffer. (Sung Pae)
Solution: Make 'formatprg' global-local. (closes vim/vim#1380)
https://github.com/vim/vim/commit/9be7c04e6cd5b0facedcb56b09a5bcfc339efe03
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 23d8287a2c..29de35805e 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -2731,7 +2731,7 @@ A jump table for the options with a short description can be found at |Q_op|. *'formatprg'* *'fp'* 'formatprg' 'fp' string (default "") - global + global or local to buffer |global-local| The name of an external program that will be used to format the lines selected with the |gq| operator. The program must take the input on stdin and produce the output on stdout. The Unix program "fmt" is |