Lines Matching refs:noremap
529 noremap <expr> <C-B> Func()
899 noremap <F3> <Cmd><Cmd>let x = 1<CR>
903 noremap <F3> <Cmd><F3>let x = 2<CR>
907 noremap <F3> <Cmd>let x = 3
912 noremap <F3> <Cmd>let m = mode(1)<CR>
913 noremap! <F3> <Cmd>let m = mode(1)<CR>
985 noremap! <F2> <Cmd>norm! :foo<CR>
1026 exe 'noremap ' .. a:lhs .. ' <Cmd>' .. a:rhs .. '<CR>'
1027 exe 'noremap! ' .. a:lhs .. ' <Cmd>' .. a:rhs .. '<CR>'
1087 noremap ,a <Cmd>call feedkeys("aalpha") \| let g:a = getline(2)<CR>
1098 noremap ,b <Cmd>call feedkeys("abeta", 'x') \| let g:b = getline(2)<CR>
1111 noremap ,x <Cmd>call append(1, "xx") \| call append(1, "aa")<CR>
1112 noremap ,f <Cmd>nosuchcommand<CR>
1113 noremap ,e <Cmd>throw "very error" \| call append(1, "yy")<CR>
1114 noremap ,m <Cmd>echoerr "The message." \| call append(1, "zz")<CR>
1115 …noremap ,w <Cmd>for i in range(5) \| if i==1 \| echoerr "Err" \| endif \| call append(1, i) \| end…