diff options
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -496,6 +496,10 @@ " 2022.06.23: " * Add `m,` mapping to save a Vim session file. " +" 2022.08.09: +" * Add `:Co` command, alias for `:Copy`. Adding to take precedence over +" `:Context…` commands. +" " Pathogen @@ -751,6 +755,10 @@ command! -bar -bang -range -nargs=* T <line1>,<line2>TComment<bang> <args> let g:context_enabled = 0 +" Copy +command! -range Co call copy#Copy(<line1>, <line2>) + + " Mappings " ======== |