diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index ecc586a..0c44359 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -2592,7 +2592,7 @@ function! fugitive#BufReadStatus() abort call s:Map('x', 's', ":execute Do('Stage',1)", '') call s:Map('n', 'u', ":execute Do('Unstage',0)", '') call s:Map('x', 'u', ":execute Do('Unstage',1)", '') - call s:Map('n', 'U', "Git --no-pager reset -q", '') + call s:Map('n', 'U', ":Git --no-pager reset -q", '') call s:MapMotion('gu', "exe StageJump(v:count, 'Untracked', 'Unstaged')") call s:MapMotion('gU', "exe StageJump(v:count, 'Unstaged', 'Untracked')") call s:MapMotion('gs', "exe StageJump(v:count, 'Staged')")