vim-signify/README.md

78 lines
2.0 KiB
Markdown
Raw Normal View History

2013-03-05 20:07:37 +01:00
# vim-signify
2013-03-06 23:40:57 +01:00
Or just: sy
2013-03-07 13:29:54 +01:00
Sy shows all added, deleted and changed lines since the last commit via Vim its
sign column (and much more!)
2013-03-06 00:30:30 +01:00
2013-03-05 20:07:37 +01:00
It's fast, highly configurable and well documented.
Features:
2013-03-07 13:24:24 +01:00
- supports git, mercurial, bazaar, subversion, cvs
2013-03-05 20:12:24 +01:00
- apart from signs there is also optional line highlighting
2013-03-05 23:15:28 +01:00
- fully configurable through global variables
2013-03-07 12:56:25 +01:00
- optional preserving of signs from other plugins
- you can toggle the plugin per buffer
2013-03-05 20:07:37 +01:00
- good documentation
2013-03-05 20:12:24 +01:00
- quick developer response! :-)
2013-03-05 20:07:37 +01:00
2013-03-07 13:29:54 +01:00
![Example:signify in action](https://github.com/mhinz/vim-signify/raw/master/signify.png)
2013-03-05 20:07:37 +01:00
Limits exist only in your mind! Vim on!
## Installation
I suggest using tpope's plain and awesome pathogen:
- https://github.com/tpope/vim-pathogen
Afterwards, just clone vim-signify into ~/.vim/bundle/.
2013-03-05 20:07:37 +01:00
## Usage
`:h signify`
2013-03-07 13:55:18 +01:00
## Configuration
For more info: `:h signify-options`
let g:signify_sign_overwrite = 1
let g:signify_mapping_next_hunk = '<leader>gn'
let g:signify_mapping_prev_hunk = '<leader>gp'
let g:signify_mapping_toggle_highlight = '<leader>gh'
let g:signify_mapping_toggle = '<leader>gt'
let g:signify_sign_add = '+'
let g:signify_sign_delete = '-'
let g:signify_sign_change = '*'
let g:signify_exceptions_filetype = [ 'vim', 'c' ]
let g:signify_exceptions_filename = [ '.vimrc' ]
let g:signify_color_sign_guifg_add = '#00ff00'
let g:signify_color_sign_guifg_delete = '#ff0000'
let g:signify_color_sign_guifg_change = '#ffff00'
let g:signify_color_guibg = '#111111'
let g:signify_color_sign_ctermfg_add') = 2
let g:signify_color_sign_ctermfg_delete = 1
let g:signify_color_sign_ctermfg_change = 3
let g:signify_color_sign_ctermbg = 0
let g:signify_color_line_highlight_add = 'DiffAdd'
let g:signify_color_line_highlight_delete = 'DiffDelete'
let g:signify_color_line_highlight_change = 'DiffChange'
2013-03-05 20:07:37 +01:00
## Author
Marco Hinz `<mh.codebro@gmail.com>`
## License
2013-03-07 13:12:01 +01:00
Copyright © 2013 Marco Hinz. Revised BSD license.