As I'm editing a file in Vim, I would like to quickly highlight any changes I have made since my last commit, while still being able to edit the file. Is there anything that comes close to doing this?
|
Try vcscommand plugin, use |
|||
|
|
Have a look at Tim Pope's fugitive.vim plugin. I'm a git purist and usually drop into the command line for git, but when I'm in vim I find that this does most of what I need to do and yet I can still call git commands directly. |
|||||||||||
|
|
There's a new plugin that does this: vim-gitgutter. It puts the changes in the Vim gutter whenever you save the file. Here's what it looks like in action:
|
|||||||||
|
|
There is a site on using git and vim together: http://www.osnews.com/story/21556/Using_Git_with_Vim I use the git.vim one, and every time I need a diff I can check it with |
|||
|
|
|
one method is to do the following:
This will show the changes (to all files) in comparison to to do a single file
this is a quick way of doing it without switching different apps nor installing any plugins (which isn't always easy to do on some systems that you don't have control over). it wont give you 'inline' highlighting but should work ok. another way to do it quickly is to do a |
|||
|
|
|
How about this (no plugins required):
This run This form of command is obviously not specific to git and hg. You can capture the results of any shell command this way. |
|||
|
|
