motiejus/dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.jakstys.lt/motiejus/dotfiles.git
Log | Tree | Refs | README | LICENSE

commit 76ffaf4e7d1143c50017d8c5d8fcdb32fe1f33a7 (tree)
parent 90b7d98b6c74a4d820d9a13d60aef1228ef25d24
Author: Tim Pope <code@tpope.net>
Date:   Sat, 25 Jan 2020 18:28:35 -0500

Recognize pull.rebase=preserve in :Gstatus

Diffstat:
Mautoload/fugitive.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim @@ -1890,7 +1890,7 @@ function! fugitive#BufReadStatus() abort if empty(rebase) let rebase = fugitive#Config('pull.rebase', config) endif - if rebase =~# '^\%(true\|yes\|on\|1\|interactive\)$' + if rebase =~# '^\%(true\|yes\|on\|1\|interactive\|merges\|preserve\)$' let pull_type = 'Rebase' elseif rebase =~# '^\%(false\|no|off\|0\|\)$' let pull_type = 'Merge'