Skip to content

Commit

Permalink
Fix multiline block
Browse files Browse the repository at this point in the history
  • Loading branch information
hkupty committed Oct 4, 2016
1 parent 78fb7ab commit 35f7366
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions plugin/magit.vim
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ execute "nnoremap <silent> " . g:magit_show_magit_mapping . " :call magit#show_m

if (g:magit_refresh_gutter == 1 || g:magit_refresh_gitgutter == 1)
autocmd User VimagitUpdateFile
\ if (exists("*gitgutter#process_buffer"))
\ call gitgutter#process_buffer(bufnr(g:magit_last_updated_buffer), 0)
\ elseif (exists("*sy#util#refresh_windows"))
\ call sy#util#refresh_windows()
\ endif
\ if ( exists("*gitgutter#process_buffer") ) |
\ call gitgutter#process_buffer(bufnr(g:magit_last_updated_buffer), 0) |
\ elseif ( exists("*sy#util#refresh_windows") ) |
\ call sy#util#refresh_windows() |
\ endif
endif
" }}}

Expand Down

0 comments on commit 35f7366

Please sign in to comment.