5
我已經按照我的vimrc映射:Vim - 如何使你自己的映射可重複?
nmap <Leader>h1 yyp<c-v>$r=
nmap <Leader>h2 yyp<c-v>$r-
我想重複<Leader>h1/2
與.
,不存在與repeat.vim插件由蒂姆教皇有以下用法線
silent! call repeat#set("\<Plug>MyWonderFulMap", v:count)
我嘗試以下方式使用它:
nnoremap <silent> <Plug>MyWonderfulMap :normal yyp<c-v>$r=
silent! call repeat#set("\<Plug>MyWonderfulMap", v:count)
nmap <Leader>h1 <Plug>MyWonderfulMap
它不起作用。
我知道這不是一個嚴重的併發症,但是,我有興趣爲自己的映射使用repeat.vim。
也http://vimcasts.org/看episodes/creating-repeatable-mappings-with-repeat-vim/ – Hotschke