Python funktioniert nicht in Vim

Python funktioniert nicht in Vim

Ich habe eine Neuinstallation von VIM vom automatischen Windows-Installationsprogramm: gvim73_46.exe

Ich habe Python 2.7 (32 Bit) installiert.

Wenn ich gvim öffne und eingebe:

:set python?

Ich erhalte die Meldung E518: Unbekannte Option. Wenn ich Folgendes eingebe:

:python 'hello'

Vim stürzt ab. Was könnte falsch sein? Hier ist der Inhalt von :version, falls er hilfreich ist, obwohl Python installiert ist und Python 2.7 verwendet. Ich habe auch nachgesehen, und C:\Windows\System32\python27.dll ist da, wo es sein sollte ... Ich bin hier wirklich ratlos. Hat jemand eine Idee, was falsch läuft?

VIM – Vi IMproved 7.3 (15. August 2010, kompiliert am 27. Oktober 2010, 17:59:02) MS-Windows 32-Bit-GUI-Version mit OLE-Unterstützung. Enthaltene Patches: 1-46. Kompiliert von Bram@KIBAALE. Große Version mit GUI. Enthaltene (+) oder nicht (-) Funktionen: +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 +gettext/dyn -hangul_input +iconv/dyn +insert_expand +jumplist +keymap +langmap +libcall +linebreak +lispindent +listcmds +localmap -lua +menu +mksession +modify_fname +mouse +mouseshape +multi_byte_ime/dyn +multi_lang -mzscheme +netbeans_intg +ole -osfiletype +path_extra +perl/dyn +persistent_undo -postscript +printer -profile +python/dyn +python3/dyn +quickfix +reltime +rightleft +ruby/dyn +scrollbind +signs +smartindent -sniff +startuptime +statusline -sun_workshop +syntax +tag_binary +tag_old_static -tag_any_white +tcl/dyn -tgetent -termresponse +textobjects +title +toolbar +user_commands +vertsplit +virtualedit +visual +visualextra +viminfo +vreplace +wildignore +wildmenu +windows +writebackup -xfontset -xim -xterm_save +xpm_w32 System-Vimrc-Datei: „$VIM\vimrc“ Benutzer-Vimrc-Datei: „$HOME_vimrc“ 2. Benutzer-Vimrc-Datei: „$VIM_vimrc“ Benutzer-Exrc-Datei: „$HOME_exrc“ 2. Benutzer-Exrc-Datei: „$VIM_exrc“ System-Gvimrc-Datei: „$VIM\gvimrc“ Benutzer-Gvimrc-Datei: „$HOME_gvimrc“ 2. Benutzer-Gvimrc-Datei: „$VIM_gvimrc“ Systemmenüdatei: „$VIMRUNTIME\menu.vim“ Kompilierung: cl -c /W3 /nologo -I. -Iproto -DHAVE_PATHDEF -DWIN32 -DFEAT_CSCOPE -DFEAT_NETBEANS_INTG -DFEAT_XPM_W32 -DWINVER=0x0400 -D_WIN32_WINNT=0x0400 /Fo.\ObjGOLYHTR/ /Ox /GL -DNDEBUG /Zl /MT -DFEAT_OLE -DFEAT_MBYTE_IME -DDYNAMIC_IME -DFEAT_GUI_W32 -DDYNAMIC_ICONV -DDYNAMIC_GETTEXT -DFEAT_TCL -DDYNAMIC_TCL -DDYNAMIC_TCL_DLL=\"tcl83.dll\" -DDYNAMIC_TCL_VER=\"8.3\" -DFEAT_PYTHON -DDYNAMIC_PYTHON -DDYNAMIC_PYTHON_DLL=\"python27.dll\" -DFEAT_PYTHON3 -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL=\"python31.dll\" -DFEAT_PERL -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=\"perl512.dll\" -DFEAT_RUBY -DDYNAMIC_RUBY -DDYNAMIC_RUBY_VER=191 -DDYNAMIC_RUBY_DLL=\"msvcrt-ruby191.dll\" -DFEAT_BIG /Fd.\ObjGOLYHTR/ /Zi Verknüpfen: Link /RELEASE /nologo /subsystem:windows /LTCG:STATUS oldnames.lib kernel32.lib advapi32.lib shell32.lib gdi32.lib comdlg32.lib ole32.lib uuid.lib /machine:i386 /nodefaultlib gdi32.lib version.lib winspool.lib comctl32.lib advapi32.lib shell32.lib /machine:i386 /nodefaultlib libcmt.lib oleaut32.lib user32.lib /nodefaultlib:python27.lib /nodefaultlib:python31.lib e:\tcl\lib\tclstub83.lib WSock32.lib e:\xpm\lib\libXpm.lib /PDB:gvim.pdb -debug

Antwort1

Es gibt keine Option „Python“, deshalb funktioniert Ihr erster Befehl nicht. Ihr zweiter Befehl würde nichts ausgeben, versuchen Sie es mit „ :python print 'hello'“ … Vim sollte jedoch nicht abstürzen.

verwandte Informationen