comparison runtime/doc/eval.txt @ 644:e4fa26ce8769 v7.0187

updated for version 7.0187
author vimboss
date Wed, 25 Jan 2006 22:10:52 +0000
parents 1c586ee8dd45
children 19106f131c87
comparison
equal deleted inserted replaced
643:d3c978b4c7ce 644:e4fa26ce8769
1 *eval.txt* For Vim version 7.0aa. Last change: 2006 Jan 20 1 *eval.txt* For Vim version 7.0aa. Last change: 2006 Jan 24
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
3258 3258
3259 3259
3260 maparg({name}[, {mode}]) *maparg()* 3260 maparg({name}[, {mode}]) *maparg()*
3261 Return the rhs of mapping {name} in mode {mode}. When there 3261 Return the rhs of mapping {name} in mode {mode}. When there
3262 is no mapping for {name}, an empty String is returned. 3262 is no mapping for {name}, an empty String is returned.
3263 These characters can be used for {mode}: 3263 {mode} can be one of these strings:
3264 "n" Normal 3264 "n" Normal
3265 "v" Visual 3265 "v" Visual
3266 "o" Operator-pending 3266 "o" Operator-pending
3267 "i" Insert 3267 "i" Insert
3268 "c" Cmd-line 3268 "c" Cmd-line
3269 "l" langmap |language-mapping| 3269 "l" langmap |language-mapping|
3270 "" Normal, Visual and Operator-pending 3270 "" Normal, Visual and Operator-pending
3271 When {mode} is omitted, the modes from "" are used. 3271 When {mode} is omitted, the modes for "" are used.
3272 The {name} can have special key names, like in the ":map" 3272 The {name} can have special key names, like in the ":map"
3273 command. The returned String has special characters 3273 command. The returned String has special characters
3274 translated like in the output of the ":map" command listing. 3274 translated like in the output of the ":map" command listing.
3275 The mappings local to the current buffer are checked first, 3275 The mappings local to the current buffer are checked first,
3276 then the global mappings. 3276 then the global mappings.