Is there a way to reduce the jumping of text back and forth when updating the git gutter, like just setting a permanent block there when there is no change
This is my my currrent setup for the gutters using the git-async plugin
hook global -group git-gutter-setup BufCreate /.* %{
add-highlighter buffer/git-diff flag-lines Default git_diff_flags
try %{ git show-diff }
hook buffer -group git-gutter-buffer FocusIn .* %{
try %{ git-async update-diff }
}
hook buffer -group git-gutter-buffer BufReload .* %{
try %{ git-async update-diff }
}
hook buffer -group git-gutter-buffer BufWritePost .* %{
try %{ git-async update-diff }
}
hook buffer -group git-gutter-buffer NormalIdle .* %{
try %{ git-async update-diff }
}
}