diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index f7f82e7..e99107a 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -7593,9 +7593,10 @@ function! fugitive#MapJumps(...) abort call s:Map('n', 'czA', ':Git stash apply --quiet stash@{=v:count}') call s:Map('n', 'czp', ':Git stash pop --quiet --index stash@{=v:count}') call s:Map('n', 'czP', ':Git stash pop --quiet stash@{=v:count}') + call s:Map('n', 'czs', ':Git stash push --staged') call s:Map('n', 'czv', ':exe "Gedit" fugitive#RevParse("stash@{" . v:count . "}")', '') - call s:Map('n', 'czw', ':Git stash --keep-index=v:count > 1 ? " --all" : v:count ? " --include-untracked" : ""') - call s:Map('n', 'czz', ':Git stash =v:count > 1 ? " --all" : v:count ? " --include-untracked" : ""') + call s:Map('n', 'czw', ':Git stash push --keep-index=v:count > 1 ? " --all" : v:count ? " --include-untracked" : ""') + call s:Map('n', 'czz', ':Git stash push =v:count > 1 ? " --all" : v:count ? " --include-untracked" : ""') call s:Map('n', 'cz?', ':help fugitive_cz', '') call s:Map('n', 'co', ':Git checkout')