commit 00cc23868a7b1fefcd262690fc4ffa315329c396 (tree)
parent 33a7cdf213b7757eca065a131a12dac84da2d7b6
Author: Jaehwang Jung <tomtomjhj@gmail.com>
Date: Sat, 25 Jun 2022 20:42:38 +0900
Don't silence cmap
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim
@@ -7477,7 +7477,7 @@ function! fugitive#MapCfile(...) abort
call s:Map('n', '<C-W>f', '<SID>:sfind <Plug><cfile><CR>', '<silent><unique>', 1)
call s:Map('n', '<C-W><C-F>', '<SID>:sfind <Plug><cfile><CR>', '<silent><unique>', 1)
call s:Map('n', '<C-W>gf', '<SID>:tabfind <Plug><cfile><CR>', '<silent><unique>', 1)
- call s:Map('c', '<C-R><C-F>', '<Plug><cfile>', '<silent><unique>', 1)
+ call s:Map('c', '<C-R><C-F>', '<Plug><cfile>', '<unique>', 1)
endif
endfunction