Earlier 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.
Vim Git Gutter
81–90 of 119 posts
Re: Vim Git Gutter
#82Seems to add noticeable latency (1+ seconds) to my save, each time. Vim is unresponsive during this time Is this expected? I save quite frequently, it's an unconscious reflex at this point.
Re: Vim Git Gutter
#83Sublime Text Version https://github.com/jisaacks/GitGutter
Not to take away from the post, anyone else feeling a bit of Vim overload in the past few days? I'm pretty much Vim'ed out with all the Vim related postings.
It might just be that it actually reflects people's interests. Given how established vim and emacs are, I have to say I'm not surprised, they remain extremely versatile and complete developing environments to this day.
Re: Vim Git Gutter
#84An aside question; what's the deal with "pathogen"? I've been using the "/bin/cp" command for years installing vim plugins and it's worked remarkably well; requiring just about 1 invocation on average... What problem does that thing solve?
I have 5 separate computers that I run vim on. Manually installing and updating is a huge pain. I keep my .vimrc in git to keep them all synchronized.
Re: Vim Git Gutter
#85Earlier quoted context omitted.
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.
I had the same problem at first. Try putting it after wherever you're loading the plugin itself. edit: Also, thanks airblade. I think I'm going to keep using this.
Re: Vim Git Gutter
#86Eclipse pretty much does this out of the box. I guess so do IntelliJ and Visual Studio. You can also display the name of the last person to change a line in the same position (ie. svn/git blame), which is very useful to quickly find out who to talk to regarding a section of a file. The commit message is displayed on mouseover.
Re: Vim Git Gutter
#87Is there any way to make it so that the gutter is always present? There's a bit of a noticeable jump to include it when I save a file, it's sort of annoying me. I tried let g:gitgutter_enabled = 1 but that does seem to work. I'll have a poke through the source.
http://superuser.com/questions/558876/how-can-i-make-the-sig...
Re: Vim Git Gutter
#88Earlier quoted context omitted.
I use both. If I need a full diff, fugitive is great. Sometimes I just want to scan to see what lines I changed in a a file. In other words, it is impractical to use this plugin to find out what _files_ you've changed. It is great for finding out what lines in whatever file you've opened have changed.
fugitive split diff shows you what lines you've changed. stop using both.
Re: Vim Git Gutter
#89Obligatory Emacs version: https://github.com/syohex/emacs-git-gutter
Ok, as a challenge, I'm gonna try make a Conception version, brb.
But I was able to get a rough prototype running.
Screenshot: https://dl.dropbox.com/u/8554242/dmitri/projects/Conception/...
Re: Vim Git Gutter
#90edit: just a quick hack for a "vim svn gutter": https://github.com/prg318/vim-gitgutter
The code is really clean and it would be fairly trivial to adopt this for use with any other VCS. Open source yay!