mirror of
https://github.com/airblade/vim-gitgutter.git
synced 2025-11-08 19:43:47 -05:00
Document how to disable realtime updates.
This commit is contained in:
10
README.mkd
10
README.mkd
@@ -462,6 +462,16 @@ nmap <silent> [c :call PrevHunkAllBuffers()<CR>
|
|||||||
|
|
||||||
### FAQ
|
### FAQ
|
||||||
|
|
||||||
|
> How can I turn off realtime updates?
|
||||||
|
|
||||||
|
Add this to your vim configuration (in an `/after/plugin` directory):
|
||||||
|
|
||||||
|
```viml
|
||||||
|
" .vim/after/plugin/gitgutter.vim
|
||||||
|
autocmd! gitgutter CursorHold,CursorHoldI
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
> Why can't I unstage staged changes?
|
> Why can't I unstage staged changes?
|
||||||
|
|
||||||
This plugin is for showing changes between the working tree and the index (and staging/undoing those changes). Unstaging a staged hunk would require showing changes between the index and HEAD, which is out of scope.
|
This plugin is for showing changes between the working tree and the index (and staging/undoing those changes). Unstaging a staged hunk would require showing changes between the index and HEAD, which is out of scope.
|
||||||
|
|||||||
@@ -417,19 +417,25 @@ colorscheme or |vimrc|:
|
|||||||
===============================================================================
|
===============================================================================
|
||||||
FAQ *gitgutter-faq*
|
FAQ *gitgutter-faq*
|
||||||
|
|
||||||
a. Why can't I unstage staged changes?
|
a. How do I turn off realtime updates?
|
||||||
|
|
||||||
|
Add this to your vim configuration in an |after-directory|:
|
||||||
|
>
|
||||||
|
autocmd! gitgutter CursorHold,CursorHoldI
|
||||||
|
<
|
||||||
|
b. Why can't I unstage staged changes?
|
||||||
|
|
||||||
This plugin is for showing changes between the working tree and the index
|
This plugin is for showing changes between the working tree and the index
|
||||||
(and staging/undoing those changes). Unstaging a staged hunk would require
|
(and staging/undoing those changes). Unstaging a staged hunk would require
|
||||||
showing changes between the index and HEAD, which is out of scope.
|
showing changes between the index and HEAD, which is out of scope.
|
||||||
|
|
||||||
b. Why are the colours in the sign column weird?
|
c. Why are the colours in the sign column weird?
|
||||||
|
|
||||||
Your colorscheme is configuring the |hl-SignColumn| highlight group weirdly.
|
Your colorscheme is configuring the |hl-SignColumn| highlight group weirdly.
|
||||||
Please see |g:gitgutter_override_sign_column_highlight| on customising the
|
Please see |g:gitgutter_override_sign_column_highlight| on customising the
|
||||||
sign column.
|
sign column.
|
||||||
|
|
||||||
c. What happens if I also use another plugin which uses signs (e.g. Syntastic)?
|
d. What happens if I also use another plugin which uses signs (e.g. Syntastic)?
|
||||||
|
|
||||||
Vim only allows one sign per line. Vim-gitgutter will not interfere with
|
Vim only allows one sign per line. Vim-gitgutter will not interfere with
|
||||||
signs it did not add.
|
signs it did not add.
|
||||||
|
|||||||
Reference in New Issue
Block a user