tpope / vim-repeat

repeat.vim: enable repeating supported plugin maps with "."
http://www.vim.org/scripts/script.php?script_id=2136
2.58k stars 81 forks source link

some key mapping will disable after installing this plugin #91

Open eyebrowkang opened 2 years ago

eyebrowkang commented 2 years ago

Hello, I am using neovim, but some key mapping will be disabled after I use some plugins, such as vim-surround and coc-explorer

after execute yskw', the u will restore to undo key, but i set it moving cursor up, and it will be ok if you comment this plugin, and vim has this problem too

here is an example init.vim or vimrc:

" Undo operations
noremap l u
" Insert Key
" type yskw' to wrap the word with '' or type cs'` to change 'word' to `word` S for visual mode
noremap k i
"     ^
"     u
" < n   i >
"     e
"     v
noremap u k
noremap n h
noremap e j
noremap i l
call plug#begin()
Plug 'tpope/vim-surround'
Plug 'tpope/vim-repeat'
call plug#end()
huwqchn commented 1 year ago

some issue