On Tue, Jun 18, 2013 at 09:33:28PM +0200, björn wrote: > It sounds a bit like it could be a bug in MacVim's implementation of > the signs feature, but I don't ever use this myself so haven't noticed > any problems. > > Can you create a minimal set of step-by-step instructions on how to > reproduce (preferably using only Syntastic and Vim)? Attach a file if > necessary.
The vimrc below causes the problem for me: " Bad setup. filetype off set rtp+=~/.vim/bundle/vundle/ call vundle#rc() Bundle 'gmarik/vundle' Bundle 'scrooloose/syntastic' " Comment out below to remove problem with signs. let g:syntastic_auto_loc_list=1 In addition, syntastic has an option to set the sign used and this doesn't seem to work in this case either. What happens is the sign I set will briefly appear and then it is replaced by the default one from syntastic. This can be demostrated by adding the follow line: let g:syntastic_warning_symbol='⚠' As the comment indicates commenting out the 'let g:syntastic_auto_loc_list=1' line hides all the problems. Thanks, Blake -- -- You received this message from the "vim_mac" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_mac" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
