1- *eval.txt* For Vim version 8.1. Last change: 2019 Jul 13
1+ *eval.txt* For Vim version 8.1. Last change: 2019 Jul 19
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -8867,7 +8867,7 @@ sign_placelist({list})
88678867 Examples: >
88688868 " Place sign s1 with id 5 at line 20 and id 10 at line
88698869 " 30 in buffer a.c
8870- let [n1, n2] = sign_place ([
8870+ let [n1, n2] = sign_placelist ([
88718871 \ {'id' : 5,
88728872 \ 'name' : 's1',
88738873 \ 'buffer' : 'a.c',
@@ -8880,7 +8880,7 @@ sign_placelist({list})
88808880
88818881 " Place sign s1 in buffer a.c at line 40 and 50
88828882 " with auto-generated identifiers
8883- let [n1, n2] = sign_place ([
8883+ let [n1, n2] = sign_placelist ([
88848884 \ {'name' : 's1',
88858885 \ 'buffer' : 'a.c',
88868886 \ 'lnum' : 40},
@@ -8977,8 +8977,10 @@ sign_unplacelist({list}) *sign_unplacelist()*
89778977 Example: >
89788978 " Remove sign with id 10 from buffer a.vim and sign
89798979 " with id 20 from buffer b.vim
8980- call sign_unplace([{'id' : 10, 'buffer' : "a.vim"},
8981- \ {'id' : 20, 'buffer' : 'b.vim'}])
8980+ call sign_unplacelist([
8981+ \ {'id' : 10, 'buffer' : "a.vim"},
8982+ \ {'id' : 20, 'buffer' : 'b.vim'},
8983+ \ ])
89828984<
89838985simplify({filename} ) *simplify()*
89848986 Simplify the file name as much as possible without changing
@@ -11508,6 +11510,11 @@ text...
1150811510 register values cannot be used here, since they cannot
1150911511 be locked.
1151011512
11513+ :cons[t]
11514+ :cons[t] {var-name}
11515+ If no argument is given or only {var-name} is given,
11516+ the behavior is the same as | :let | .
11517+
1151111518:lockv[ar][!] [depth] {name} ... *:lockvar* *:lockv*
1151211519 Lock the internal variable {name} . Locking means that
1151311520 it can no longer be changed (until it is unlocked).
0 commit comments