1
0
forked from aniani/vim

updated for version 7.4.201

Problem:    'lispwords' is a global option.
Solution:   Make 'lispwords' global-local. (Sung Pae)
This commit is contained in:
Bram Moolenaar
2014-03-12 18:55:58 +01:00
parent 24ff9e33a9
commit af6c131bf7
10 changed files with 51 additions and 5 deletions

View File

@@ -4629,7 +4629,7 @@ A jump table for the options with a short description can be found at |Q_op|.
*'lispwords'* *'lw'*
'lispwords' 'lw' string (default is very long)
global
global or local to buffer |global-local|
{not in Vi}
{not available when compiled without the |+lispindent|
feature}

View File

@@ -855,7 +855,7 @@ if has("lispindent")
call append("$", "\t(local to buffer)")
call <SID>BinOptionL("lisp")
call append("$", "lispwords\twords that change how lisp indenting works")
call <SID>OptionG("lw", &lw)
call <SID>OptionL("lw", &lw)
endif