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
- Host: GitHub
- URL: https://github.com/jiskattema/vim-lineage
- Owner: jiskattema
- License: apache-2.0
- Created: 2020-01-29T08:59:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-29T10:30:38.000Z (over 6 years ago)
- Last Synced: 2025-10-28T15:45:06.430Z (8 months ago)
- Topics: git, vim, vim-plugin
- Language: Vim script
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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')
```