mirror of
https://github.com/preservim/nerdcommenter.git
synced 2024-11-26 02:10:11 +08:00
Merge pull request #63 from inkarkat/add-repeat-support
Make mappings repeatable with . through repeat.vim
This commit is contained in:
commit
20e089f6b9
|
@ -139,6 +139,10 @@ left side (|<Leader>|cl) or both sides (|<Leader>|cb).
|
|||
[count]|<Leader>|cu |NERDComUncommentLine|
|
||||
Uncomments the selected line(s).
|
||||
|
||||
|
||||
With the optional repeat.vim plugin (vimscript #2136), the mappings can also
|
||||
be repeated via |.|
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
3.2 Functionality details *NERDComFunctionalityDetails*
|
||||
|
||||
|
|
|
@ -1128,6 +1128,8 @@ function! NERDComment(mode, type) range
|
|||
endif
|
||||
|
||||
let &ignorecase = oldIgnoreCase
|
||||
|
||||
silent! call repeat#set("\<Plug>NERDCommenter". a:type)
|
||||
endfunction
|
||||
|
||||
" Function: s:PlaceDelimitersAndInsBetween() function {{{2
|
||||
|
|
Loading…
Reference in New Issue
Block a user