123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- if exists("g:loaded_menu_map") | finish | endif
- let g:loaded_menu_map = 1
-
- "" line continuation used here ??
- let s:cpo_save = &cpo
- set cpo&vim
-
-
-
- command! -nargs=+ -bang MAP map<bang> <args>
- command! -nargs=+ IMAP imap <args>
- command! -nargs=+ NMAP nmap <args>
- command! -nargs=+ CMAP cmap <args>
- command! -nargs=+ VMAP vmap <args>
- command! -nargs=+ AMAP
- \ call lh#menu#map_all('amap', <f-args>)
-
- command! -nargs=+ -bang NOREMAP noremap<bang> <args>
- command! -nargs=+ INOREMAP inoremap <args>
- command! -nargs=+ NNOREMAP nnoremap <args>
- command! -nargs=+ CNOREMAP cnoremap <args>
- command! -nargs=+ VNOREMAP vnoremap <args>
- command! -nargs=+ ANOREMAP
- \ call lh#menu#map_all('anoremap', <f-args>)
-
-
-
- let &cpo = s:cpo_save
- finish
-
-
|