From f5451e4379f4ecff1bf536c01380e2d2b05c849d Mon Sep 17 00:00:00 2001 From: Tim Pope <code@tpope.net> Date: Thu, 15 Apr 2021 12:15:38 -0400 Subject: [PATCH] fugitive.vim 3.3 * Replace :! :Git backend with smart job runner. * Replace special cased commit/revert/rebase/merge/etc. with regular :Git. * Support :Git -c config.name=value and other common flags. * Improve completion of :Git subcommands, including hiding plumbing commands. * Improve completion of arguments to :Git subcommands. * Show unpulled and unpushed sections for both upstream and push remote. * Introduce capitalized naming scheme for :GMove/:GRename/:GRemove/:GDelete/:GBrowse. * Expand SSH host aliases in remote URLs for :GBrowse. * Enable opening arbitrary URLs with :GBrowse. * Add warnings to deprecated commands. * Remove all other temp buffer commands in favor of :Git --paginate. * Don't automatically invoke :setlocal foldmethod=syntax in Fugitive buffers. * Support colored :Git blame commits in 256 color terminals. * Bug fixes. --- plugin/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index 0afa3a9f..1b78b3db 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -1,6 +1,6 @@ " fugitive.vim - A Git wrapper so awesome, it should be illegal " Maintainer: Tim Pope <http://tpo.pe/> -" Version: 3.2 +" Version: 3.3 " GetLatestVimScripts: 2975 1 :AutoInstall: fugitive.vim if exists('g:loaded_fugitive') -- GitLab