Lines Matching refs:silent
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>