Vim Git Gutter
11–20 of 119 posts
Re: Vim Git Gutter
#12It'd be perfect if the signs changed in real-time without the need to save first. Awesome work though. Thanks Andy.
Re: Vim Git Gutter
#13It'd be perfect if the signs changed in real-time without the need to save first. Awesome work though. Thanks Andy.
Re: Vim Git Gutter
#14Re: Vim Git Gutter
#15Re: Vim Git Gutter
#16It'd be perfect if the signs changed in real-time without the need to save first. Awesome work though. Thanks Andy.
Re: Vim Git Gutter
#17I've also got a similar plugin https://bitbucket.org/sirpengi/iwilldiffer that works with hg as well as git. Mine uses python though, nice to see an implementation that's all in viml. Neither of our plugins are async though (so vim ui will block while the diff is running), which is the biggest hurdle I want to cross.
Re: Vim Git Gutter
#18Re: Vim Git Gutter
#19Earlier quoted context omitted.
You can achieve that manually with `highlight clear SignColumn` in your colour scheme or ~/.vimrc. I'll (I'm the author) probably make this the default because it seems quite a common wish.
I've added it at the bottom of ~/.vimrc, but for some reason it doesn't work until I explicitly type `highlight clear SignColumn` while editing a document. Any ideas why this could be happening? Great plugin by the way, super handy.
hi SignColumn ctermbg=232 guibg=#080808
Re: Vim Git Gutter
#20Very cool. Pointed me at the Sublime Text version and I love it.