Lines Matching refs:buffer
50 \ " | sil! exe 'nunmap <buffer> <'" .
51 \ " | sil! exe 'nunmap <buffer> >'" .
52 \ " | sil! exe 'nunmap <buffer> <<'" .
53 \ " | sil! exe 'nunmap <buffer> >>'" .
54 \ " | sil! exe 'vunmap <buffer> <'" .
55 \ " | sil! exe 'vunmap <buffer> >'" .
56 \ " | sil! exe 'iunmap <buffer> <C-D>'" .
57 \ " | sil! exe 'iunmap <buffer> <C-T>'" .
58 \ " | sil! exe 'iunmap <buffer> <Tab>'" .
59 \ " | sil! exe 'nunmap <buffer> <Plug>Traditional'" .
60 \ " | sil! exe 'nunmap <buffer> <Plug>Comment'" .
61 \ " | sil! exe 'nunmap <buffer> <Plug>DeComment'" .
62 \ " | sil! exe 'vunmap <buffer> <Plug>VisualTraditional'" .
63 \ " | sil! exe 'vunmap <buffer> <Plug>VisualComment'" .
64 \ " | sil! exe 'iunmap <buffer> <Plug>VisualDeComment'" .
65 \ " | sil! exe 'unmap <buffer> [['" .
66 \ " | sil! exe 'unmap <buffer> ]]'" .
67 \ " | sil! exe 'unmap <buffer> []'" .
68 \ " | sil! exe 'unmap <buffer> ]['"
73 nnoremap <silent> <buffer> > :set opfunc=<SID>IncreaseFunc<CR>g@
74 nnoremap <silent> <buffer> < :set opfunc=<SID>DecreaseFunc<CR>g@
76 nnoremap <silent> <buffer> >> :call CobolIndentBlock(1)<CR>
77 nnoremap <silent> <buffer> << :call CobolIndentBlock(-1)<CR>
78 vnoremap <silent> <buffer> > :call CobolIndentBlock(v:count1)<CR>
79 vnoremap <silent> <buffer> < :call CobolIndentBlock(-v:count1)<CR>
80 … inoremap <silent> <buffer> <C-T> <C-R>=<SID>IncreaseIndent()<CR><C-R>=<SID>RestoreShiftwidth()<CR>
81 … inoremap <silent> <buffer> <C-D> <C-R>=<SID>DecreaseIndent()<CR><C-R>=<SID>RestoreShiftwidth()<CR>
83 inoremap <silent> <buffer> <Tab> <C-R>=<SID>Tab()<CR><C-R>=<SID>RestoreShiftwidth()<CR>
85 …noremap <silent> <buffer> [[ m':call search('\c^\%(\s*\<Bar>.\{6\}\s\+\)\zs[A-Za-z0-9-]\+\s\+\%(di…
86 …noremap <silent> <buffer> ]] m':call search('\c^\%(\s*\<Bar>.\{6\}\s\+\)\zs[A-Za-z0-9-]\+\s\+\%(di…
87 noremap <silent> <buffer> [] m':call <SID>toend('b')<CR>
88 noremap <silent> <buffer> ][ m':call <SID>toend('')<CR>
90 noremap <silent> <buffer> <Plug>Traditional :call <SID>Comment('t')<CR>
91 noremap <silent> <buffer> <Plug>Comment :call <SID>Comment('c')<CR>
92 noremap <silent> <buffer> <Plug>DeComment :call <SID>Comment('u')<CR>
93 noremap <silent> <buffer> <Plug>VisualTraditional :'<,'>call <SID>Comment('t')<CR>
94 noremap <silent> <buffer> <Plug>VisualComment :'<,'>call <SID>Comment('c')<CR>
95 noremap <silent> <buffer> <Plug>VisualDeComment :'<,'>call <SID>Comment('u')<CR>