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 0a77016ef56672767d9db3dcf6f51ef22f4ca4be (tree)
parent 06e34204af04643d96d30132de6ba9066368de15
Author: Ben <ben@wese.io>
Date:   Thu, 17 Oct 2019 16:14:07 -0600

Disable signcolumn during Gblame (#1379)



Diffstat:
Mautoload/fugitive.vim | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim @@ -5012,6 +5012,9 @@ function! s:BlameSubcommand(line1, count, range, bang, mods, args) abort if exists('+relativenumber') setlocal norelativenumber endif + if exists('+signcolumn') + setlocal signcolumn=no + endif execute "vertical resize ".(s:linechars('.\{-\}\ze\s\+\d\+)')+1) call s:Map('n', 'A', ":<C-u>exe 'vertical resize '.(<SID>linechars('.\\{-\\}\\ze [0-9:/+-][0-9:/+ -]* \\d\\+)')+1+v:count)<CR>", '<silent>') call s:Map('n', 'C', ":<C-u>exe 'vertical resize '.(<SID>linechars('^\\S\\+')+1+v:count)<CR>", '<silent>')