| /vim-8.2.3635/src/testdir/ |
| H A D | test_menu.vim | 254 call assert_equal('<Nop>', menu_info('Test.abc').rhs) 286 \ rhs: ":menu<CR>", noremenu: v:false, script: v:false}, 290 \ rhs: ":menu!<CR>", noremenu: v:false, script: v:false}, 294 \ rhs: ":amenu<CR>", noremenu: v:false, script: v:false}, 318 \ rhs: ':imenu<CR>', noremenu: v:false, script: v:true}, 392 \ menu_info('Test.amenu', 'o').rhs) 394 \ menu_info('Test.amenu', 'v').rhs) 396 \ menu_info('Test.amenu', 'x').rhs) 398 \ menu_info('Test.amenu', 's').rhs) 401 \ menu_info('Test.amenu', 'c').rhs) [all …]
|
| H A D | test_maparg.vim | 22 \ 'rhs': 'is<F4>foo', 'buffer': 0}, 27 \ 'rhs': 'isbar', 'buffer': 1}, 51 call assert_equal(['{', 'w', 'o'], [d.lhs, d.rhs, d.mode]) 56 call assert_equal(['{', 'w', 'l'], [d.lhs, d.rhs, d.mode]) 61 call assert_equal(['{', 'w', 'n'], [d.lhs, d.rhs, d.mode]) 157 call assert_equal('original<CR>', orig.rhs) 167 call assert_equal('original<CR>', d.rhs) 185 call assert_equal('one<Left>x', orig.rhs) 207 call assert_equal('one\<CR>two', orig.rhs) 227 call assert_equal("one\x16<CR>two", orig.rhs) [all …]
|
| H A D | test_true_false.vim | 100 return filter(a:d, 'v:key == "rhs"') 105 call Try_arg_true_false('FilterMapArg(maparg("asdf", "i", 1, %v%))', "asdff", {'rhs': 'asdff'})
|
| H A D | test_mapping.vim | 777 " Newline in {lhs} and {rhs} of a map 848 " Test for removing an abbreviation using {rhs} and with space after {lhs} 852 call assert_equal(['foo', 'bar', '!'], [d.lhs, d.rhs, d.mode]) 876 call assert_equal(['x\k', 'Test', 'i'], [d.lhs, d.rhs, d.mode]) 883 call assert_equal(['x<Bslash>k', 'Test', 'i'], [d.lhs, d.rhs, d.mode]) 1025 func s:cmdmap(lhs, rhs) argument 1026 exe 'noremap ' .. a:lhs .. ' <Cmd>' .. a:rhs .. '<CR>' 1027 exe 'noremap! ' .. a:lhs .. ' <Cmd>' .. a:rhs .. '<CR>' 1401 " Test for using <script> with a map to remap characters in rhs
|
| H A D | test_user_func.vim | 99 " rhs of &&.
|
| /vim-8.2.3635/src/ |
| H A D | map.c | 212 char_u *rhs, in map_add() argument 335 char_u *rhs; in do_map() local 453 rhs = p; in do_map() 487 orig_rhs = rhs; in do_map() 493 rhs = replace_termcodes(rhs, &arg_buf, in do_map() 1031 char_u *rhs; in map_to_exists() local 2197 char_u *rhs; in get_maparg() local 2249 if (rhs != NULL) in get_maparg() 2339 char_u *rhs; in f_mapset() local 2382 orig_rhs = rhs; in f_mapset() [all …]
|
| H A D | gui_haiku.cc | 373 VimFont(const VimFont *rhs); 374 VimFont(const BFont *rhs); 375 VimFont(const VimFont &rhs); 2022 VimFont::VimFont(const VimFont *rhs): BFont(rhs) in VimFont() argument 2027 VimFont::VimFont(const BFont *rhs): BFont(rhs) in VimFont() argument 2032 VimFont::VimFont(const VimFont &rhs): BFont(rhs) in VimFont() argument
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | map.txt | 47 {rhs} means right-hand-side *{rhs}* 49 :map {lhs} {rhs} |mapmode-nvo| *:map* 53 :smap {lhs} {rhs} |mapmode-s| *:smap* 55 :map! {lhs} {rhs} |mapmode-ic| *:map!* 526 (or '|') is considered to be part of {rhs}. This allows the {rhs} to end 612 *map_empty_rhs* *map-empty-rhs* 825 included in {rhs} is encountered it will be replaced with {rhs}, and so on. 834 {rhs} will not be mapped again. 1156 existed it is replaced with the new {rhs}. {rhs} may 1184 remapping for this {rhs} [all …]
|
| H A D | quickref.txt | 513 |:map| :ma[p] {lhs} {rhs} map {lhs} to {rhs} in Normal and Visual mode 514 |:map!| :ma[p]! {lhs} {rhs} map {lhs} to {rhs} in Insert and Command-line 516 |:noremap| :no[remap][!] {lhs} {rhs} 517 same as ":map", no remapping for this {rhs} 560 |:abbreviate| :ab[breviate] {lhs} {rhs} add abbreviation for {lhs} to {rhs} 564 |:noreabbrev| :norea[bbrev] [lhs] [rhs] like ":ab", but don't remap [rhs] 1430 |:menu| :menu {mpath} {rhs} add menu {mpath}, giving {rhs} 1431 |:menu| :menu {pri} {mpath} {rhs} 1433 |:menu| :menu ToolBar.{name} {rhs} 1434 add toolbar item, giving {rhs}
|
| H A D | gui.txt | 739 Note that the separator also requires a rhs. It doesn't matter what it is, 876 Special characters in the list, just before the rhs: 971 (the rhs is in <> notation, you can copy/paste this text to try out the 981 :tm[enu] {menupath} {rhs} Define a tip for a menu or tool. {only in
|
| H A D | helphelp.txt | 388 - anything between {braces}, e.g. {lhs} and {rhs}
|
| /vim-8.2.3635/runtime/ftplugin/ |
| H A D | eruby.vim | 71 if !get(s:cfilemap, 'buffer') || !s:cfilemap.expr || s:cfilemap.rhs =~# 'ErubyAtCursor()' 74 if !has_key(s:cfilemap, 'rhs') 75 …let s:cfilemap.rhs = "substitute(&l:inex =~# '\\<v:fname\\>' && len(expand('<cfile>')) ? eval(subs… 78 if !get(s:ctagmap, 'buffer') || !s:ctagmap.expr || s:ctagmap.rhs =~# 'ErubyAtCursor()' 104 …pt><expr> <Plug><cfile> ErubyAtCursor() ? ' . maparg('<Plug><cfile>', 'c') . ' : ' . s:cfilemap.rhs 105 …ag> ErubyAtCursor() ? ' . maparg('<Plug><ctag>', 'c') . ' : ' . get(s:ctagmap, 'rhs', '"\022\027"')
|
| /vim-8.2.3635/src/proto/ |
| H A D | map.pro | 9 int map_to_exists_mode(char_u *rhs, int mode, int abbr);
|
| /vim-8.2.3635/runtime/indent/ |
| H A D | elm.vim | 75 " Indent double shift after let with an empty rhs
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | docbk.vim | 162 syn keyword docbkKeyword productionset rhs tag tocdiv topic contained
|
| H A D | mupad.vim | 104 syn keyword mupadFunction level lhs rhs limit linsolve lllint
|
| H A D | maxima.vim | 161 syn keyword maximaFunc reveal reverse revert revert2 rhs ric ricci riem riemann
|
| H A D | maple.vim | 200 syn keyword mvLibrary AFactor KelvinHer arctan factor log rhs
|
| /vim-8.2.3635/runtime/autoload/xml/ |
| H A D | html40s.vim | 266 …k': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', 'box', …
|
| H A D | html401s.vim | 266 …k': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', 'box', …
|
| H A D | xhtml10s.vim | 266 …k': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', 'box', …
|
| H A D | html40f.vim | 318 …k': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', 'box', …
|
| H A D | xhtml11.vim | 290 …], 'ondblclick': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', 'box', …
|
| H A D | html401t.vim | 310 …k': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', 'box', …
|
| H A D | html401f.vim | 318 …k': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', 'box', …
|