MacVim falha com o Gundo

3

Sempre que invoco o gundo, o MacVim falha com o seguinte erro.

Vim: Caught deadly signal SEGV
Vim: Finished.

Funciona bem no vim normal, mas não tenho certeza qual é o problema. Eu criei o aplicativo via macports e é a versão mais recente e estou usando a versão mais recente do Janus.

VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Aug 13 2012 23:40:11)
MacOS X (unix) version
Included patches: 1-244, 246-390
Compiled by ley@appa
Huge version with MacVim GUI.  Features included (+) or not (-):
+arabic +autocmd +balloon_eval +browse ++builtin_terms +byte_offset +cindent +clientserver
+clipboard +cmdline_compl +cmdline_hist +cmdline_info +comments +conceal +cryptv -cscope       +cursorbind
+cursorshape +dialog_con_gui +diff +digraphs +dnd -ebcdic +emacs_tags +eval +ex_extra +extra_search
+farsi +file_in_path +find_in_path +float +folding -footer +fork() +fullscreen +gettext
-hangul_input +iconv +insert_expand +jumplist +keymap +langmap +libcall +linebreak +lispindent
+listcmds +localmap -lua +menu +mksession +modify_fname +mouse +mouseshape +mouse_dec -mouse_gpm
-mouse_jsbterm +mouse_netterm -mouse_sysmouse +mouse_xterm +mouse_urxvt +multi_byte +multi_lang
-mzscheme +netbeans_intg +odbeditor +path_extra +perl +persistent_undo +postscript +printer +profile
+python -python3 +quickfix +reltime +rightleft -ruby +scrollbind +signs +smartindent -sniff
+startuptime +statusline -sun_workshop +syntax +tag_binary +tag_old_static -tag_any_white +tcl
+terminfo +termresponse +textobjects +title +toolbar +transparency +user_commands +vertsplit
+virtualedit +visual +visualextra +viminfo +vreplace +wildignore +wildmenu +windows  +writebackup
-X11 -xfontset +xim -xsmp -xterm_clipboard -xterm_save

Eu tenho tido esse problema apenas com o MacVim. Vim está funcionando bem.

    
por Ley Missailidis 14.08.2012 / 06:00

1 resposta

2

Eu recomendaria usar homebrew em vez de MacPorts.

Para quem está tendo esse problema e está usando o homebrew, isso funcionou para mim:

brew unlink python
brew unlink macvim
brew remove macvim
brew install -v --force macvim
brew link macvim
brew link python

One-liner para copiar e colar no terminal:

brew unlink python && brew unlink macvim && brew remove macvim && brew install -v --force macvim && brew link macvim && brew link python

(do link )

    
por 19.09.2013 / 22:32