Fix: Command [count]o can't repeat in vimwiki

Issue #776
This commit is contained in:
Tinmarino 2020-05-17 14:07:16 -04:00
parent 077467877d
commit f49a91501b
2 changed files with 3 additions and 2 deletions

View File

@ -3626,6 +3626,7 @@ Fixed:~
* Issue #835: Pressing enter on the dash of a markdown list causes an error.
* Issue #876: E684: list index out of range: 0, when creating a link containing a `.`.
* Issue #803: `:VimwikiGenerateLinks` for subdirectory only
* Issue #776: Command [count]o can't repeat in vimwiki
2.4 (2019-03-24)~

View File

@ -432,9 +432,9 @@ noremap <silent><script><buffer> <Plug>VimwikiRemoveSingleCB
noremap <silent><script><buffer> <Plug>VimwikiRemoveCBInList
\ :VimwikiRemoveCBInList<CR>
nnoremap <silent><buffer> <Plug>VimwikiListo
\ :<C-U>call vimwiki#lst#kbd_o()<CR>
\ :<C-U>call vimwiki#u#count_exe('call vimwiki#lst#kbd_o()')<CR>
nnoremap <silent><buffer> <Plug>VimwikiListO
\ :<C-U>call vimwiki#lst#kbd_O()<CR>
\ :<C-U>call vimwiki#u#count_exe('call vimwiki#lst#kbd_O()')<CR>
" default lists key mappings
if str2nr(vimwiki#vars#get_global('key_mappings').lists)