Home
last modified time | relevance | path

Searched refs:lhs (Results 1 – 25 of 33) sorted by relevance

12

/vim-8.2.3635/src/
H A Dvim9compile.c6217 lhs->lhs_opt_flags, lhs->lhs_vimvaridx, in generate_store_lhs()
6219 lhs->lhs_type, lhs->lhs_name); in generate_store_lhs()
6301 lhs->lhs_varlen_total = lhs->lhs_varlen; in compile_lhs()
6337 lhs->lhs_lvar = &lhs->lhs_local_lvar; in compile_lhs()
6350 lhs->lhs_lvar = &lhs->lhs_arg_lvar; in compile_lhs()
6457 lhs->lhs_type = lhs->lhs_lvar->lv_type; in compile_lhs()
6499 lhs->lhs_member_type = lhs->lhs_type; in compile_lhs()
6541 lhs->lhs_member_type = lhs->lhs_type->tt_member; in compile_lhs()
6568 if (!lhs->lhs_has_index && lhs->lhs_lvar == &lhs->lhs_arg_lvar) in compile_assign_lhs()
6719 lhs->lhs_lvar, lhs->lhs_type); in compile_load_lhs()
[all …]
H A Dmap.c2261 char_u *lhs = str2special_save(mp->m_keys, TRUE); in get_maparg() local
2265 dict_add_string(dict, "lhs", lhs); in get_maparg()
2266 vim_free(lhs); in get_maparg()
2336 char_u *lhs; in f_mapset() local
2373 lhs = dict_get_string(d, (char_u *)"lhs", FALSE); in f_mapset()
2377 if (lhs == NULL || lhsraw == NULL || rhs == NULL) in f_mapset()
2406 arg = alloc(STRLEN(lhs) + STRLEN("<buffer>") + 1); in f_mapset()
2410 STRCPY(arg + 8, lhs); in f_mapset()
2414 arg = vim_strsave(lhs); in f_mapset()
/vim-8.2.3635/src/testdir/
H A Dtest_maparg.vim51 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])
66 call assert_equal(['{', 'w', 'x'], [d.lhs, d.rhs, d.mode])
71 call assert_equal(['{', 'w', 's'], [d.lhs, d.rhs, d.mode])
156 call assert_equal(a:keys, orig.lhs)
166 call assert_equal(a:keys, d.lhs)
184 call assert_equal('K', orig.lhs)
206 call assert_equal('K', orig.lhs)
226 call assert_equal('K', orig.lhs)
[all …]
H A Dtest_mapping.vim777 " 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>'
1030 func s:cmdunmap(lhs) argument
1031 exe 'unmap ' .. a:lhs
[all …]
H A Dtest_filetype.vim280 \ 'lhaskell': ['file.lhs'],
H A Dtest_termcodes.vim2312 call assert_true(maparg(k1, 'n', 0, 1).lhs == k2)
/vim-8.2.3635/runtime/doc/
H A Dmap.txt46 {lhs} means left-hand-side *{lhs}*
49 :map {lhs} {rhs} |mapmode-nvo| *:map*
55 :map! {lhs} {rhs} |mapmode-ic| *:map!*
137 :nm[ap] {lhs} |mapmode-n| *:nmap_l*
138 :vm[ap] {lhs} |mapmode-v| *:vmap_l*
824 {lhs} is typed, it will be replaced with {rhs}. When the {lhs} which is
1149 :ab[breviate] {lhs} list the abbreviations that start with {lhs}
1155 add abbreviation for {lhs} to {rhs}. If {lhs} already
1162 :una[bbreviate] [<buffer>] {lhs}
1178 :cuna[bbrev] [<buffer>] {lhs}
[all …]
H A Dquickref.txt513 |: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}
518 |:unmap| :unm[ap] {lhs} remove the mapping of {lhs} for Normal and
520 |:unmap!| :unm[ap]! {lhs} remove the mapping of {lhs} for Insert and
522 |:map_l| :ma[p] [lhs] list mappings (starting with [lhs]) for
524 |:map_l!| :ma[p]! [lhs] list mappings (starting with [lhs]) for
560 |:abbreviate| :ab[breviate] {lhs} {rhs} add abbreviation for {lhs} to {rhs}
561 |:abbreviate| :ab[breviate] {lhs} show abbr's that start with {lhs}
563 |:unabbreviate| :una[bbreviate] {lhs} remove abbreviation for {lhs}
[all …]
H A Dhelphelp.txt388 - anything between {braces}, e.g. {lhs} and {rhs}
/vim-8.2.3635/runtime/syntax/
H A Dcsc.vim144 " when wanted, highlighting lhs members or errors in assignments (may lag the editing)
H A Ddocbk.vim159 syn keyword docbkKeyword extendedlink givenname info lhs locator contained
H A Dmupad.vim104 syn keyword mupadFunction level lhs rhs limit linsolve lllint
H A Dmaxima.vim114 syn keyword maximaFunc lfreeof lg lgtreillis lhospitallim lhs liediff limit limsubst
H A Dmaple.vim276 syn keyword mvLibrary JacobiTheta4 arccsch expand lhs rem writestat
/vim-8.2.3635/runtime/autoload/xml/
H A Dhtml40s.vim266 …'onclick': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', …
H A Dhtml401s.vim266 …'onclick': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', …
H A Dxhtml10s.vim266 …'onclick': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', …
H A Dhtml40f.vim318 …'onclick': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', …
H A Dxhtml11.vim290 …dth': [], 'ondblclick': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', …
H A Dhtml401t.vim310 …'onclick': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', …
H A Dhtml401f.vim318 …'onclick': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', …
H A Dhtml40t.vim310 …'onclick': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', …
H A Dxhtml10f.vim318 …'onclick': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', …
H A Dxhtml10t.vim310 …'onclick': [], 'width': [], 'frame': ['void', 'above', 'below', 'hsides', 'lhs', 'rhs', 'vsides', …
/vim-8.2.3635/runtime/
H A Dfiletype.vim741 au BufNewFile,BufRead *.lhs setf lhaskell

12