An open API service indexing awesome lists of open source software.

https://github.com/jiskattema/vim-lineage

Vim plugin combining git log and vimdiff
https://github.com/jiskattema/vim-lineage

git vim vim-plugin

Last synced: 3 months ago
JSON representation

Vim plugin combining git log and vimdiff

Awesome Lists containing this project

README

          

# Lineage

Run vimdiff on a currently open file, and a previous version from git.

## Installation

Install via your prefferred plugin manager, I'm using Plugin:
```vim
Plugin 'jiskattema/vim-lineage'
```

## Usage

Add the following to your .vimrc.
```vim
map ] :call Lineage(v:count, 'next')
map = :call Lineage(v:count, 'prev')
```