Skip to content

Instantly share code, notes, and snippets.

@yoppi
Created March 19, 2011 15:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoppi/877553 to your computer and use it in GitHub Desktop.
Save yoppi/877553 to your computer and use it in GitHub Desktop.
fixed disorderd on CUI vim.
diff --git a/errormaker.vim b/errormaker.vim
index d1e1093..f45e698 100644
--- a/errormaker.vim
+++ b/errormaker.vim
@@ -142,6 +142,9 @@ function! s:SetErrorMarkers()
execute ":sign place " . l:key . " line=" . l:d.lnum . " name=" .
\ l:name . " buffer=" . l:d.bufnr
endfor
+ if !has('gui_running')
+ redraw!
+ endif
endfunction
function! s:ErrorMessageBalloons()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment