バージョン2.7がインストールされている場合、GundoプラグインにはPython 2.4が必要です


10

Python 2.7.9がインストールされています。そして今、Gundoプラグインには2.4が必要であるというメッセージが表示されます。回避策はありますか?

これが私のvimrcファイルです:

set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required

Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-surround'
Plugin 'easymotion/vim-easymotion'
Plugin 'scrooloose/nerdtree'
Plugin 'jlanzarotta/bufexplorer'
Plugin 'rstacruz/sparkup'
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'jeffkreeftmeijer/vim-numbertoggle'
Plugin 'scrooloose/syntastic'
Plugin 'qpkorr/vim-renamer'
Plugin 'klen/python-mode'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'dhruvasagar/vim-table-mode'
Plugin 'shinokada/listtrans.vim'
Plugin 'gavinbeatty/vmath.vim'
Plugin 'sjl/gundo.vim'
Plugin 'tpope/vim-abolish'


" Bindings for Listtrans plugin
nmap  ;l   :call ListTrans_toggle_format()<CR>          
vmap  ;l   :call ListTrans_toggle_format('visual')<CR>

" Bindings for Gundo
nnoremap <F5> :GundoToggle<CR>

"_Bindings for vmath
"nmap          ++  vip++
"vmap          ++  VMATH_YankAndAnalyse()                     


" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList       - lists configured plugins
" :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line

:syntax on
let NERDTreeQuitOnOpen=1

:set hlsearch

vim --version
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Mar 31 2015 23:56:29)
Included patches: 1-488, 576
Modified by pkg-vim-maintainers@lists.alioth.debian.org
Compiled by buildd@
Huge version without GUI.  Features included (+) or not (-):
+acl             +farsi           +mouse_netterm   +syntax
+arabic          +file_in_path    +mouse_sgr       +tag_binary
+autocmd         +find_in_path    -mouse_sysmouse  +tag_old_static
-balloon_eval    +float           +mouse_urxvt     -tag_any_white
-browse          +folding         +mouse_xterm     -tcl
++builtin_terms  -footer          +multi_byte      +terminfo
+byte_offset     +fork()          +multi_lang      +termresponse
+cindent         +gettext         -mzscheme        +textobjects
-clientserver    -hangul_input    +netbeans_intg   +title
-clipboard       +iconv           +path_extra      -toolbar
+cmdline_compl   +insert_expand   -perl            +user_commands
+cmdline_hist    +jumplist        +persistent_undo +vertsplit
+cmdline_info    +keymap          +postscript      +virtualedit
+comments        +langmap         +printer         +visual
+conceal         +libcall         +profile         +visualextra
+cryptv          +linebreak       -python          +viminfo
+cscope          +lispindent      -python3         +vreplace
+cursorbind      +listcmds        +quickfix        +wildignore
+cursorshape     +localmap        +reltime         +wildmenu
+dialog_con      -lua             +rightleft       +windows
+diff            +menu            -ruby            +writebackup
+digraphs        +mksession       +scrollbind      -X11
-dnd             +modify_fname    +signs           -xfontset
-ebcdic          +mouse           +smartindent     -xim
+emacs_tags      -mouseshape      -sniff           -xsmp
+eval            +mouse_dec       +startuptime     -xterm_clipboard
+ex_extra        +mouse_gpm       +statusline      -xterm_save
+extra_search    -mouse_jsbterm   -sun_workshop    -xpm
   system vimrc file: "$VIM/vimrc"
     user vimrc file: "$HOME/.vimrc"
 2nd user vimrc file: "~/.vim/vimrc"
      user exrc file: "$HOME/.exrc"
  fall-back for $VIM: "/usr/share/vim"
Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H     -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1      
Linking: gcc   -fPIE -pie -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -o vim        -lm -ltinfo -lnsl  -lselinux -lacl -lattr -lgpm -ldl

1
GundoがPythonバージョンで動作しないということですか?私はそれが少なくとも Python 2.4を必要とすると信じていますが、どんなPython 2.4+でも動作するはずです。2.7.6私のマシンで動作しているようです。
ルカシュゴルスキ

それは確かにそれが2.4+を必要とすると言っていますが、それでもまだ意味がありません。
user3467407 2016

どうして?それが機能せず、このメッセージがエラーの説明として表示される場合は、設定に問題があります(GundoはPythonと適切に通信していないか、少なくともインストールしたこの特定の実装とは通信していません)。それが機能する場合、それは2.4より古いPython(それ自体は非常に古い)でGundoを使用できないという単なる情報です。このPythonバージョン要件はどこに正確に表示されますか?
ルカシュゴルスキ

Vimのバージョンは何ですか?:version出力を表示してください
クリスチャンブラバンド2016

5
あなたは-pythonを持ってます+ pythonまたは+ python / dynを備えたVimが必要です。パッケージマネージャーからvim-gtkをインストールしてみてください。
クリスチャンブラバンド2016

回答:


7

undotreeプラグインを試してください:

誰かがGundoとの違いについて私に尋ねました、ここに違いのリスト、または利点があります。

  1. 純粋なvimscriptの実装とサードパーティのライブラリ(pythonなど)は必要ありません。パフォーマンスについて心配する必要はありません。vimがこれを処理することはそれほど重要ではありません。唯一の依存関係は、常にvimに同梱されている「diff」ツールであり、「diff」がなくても、このスクリプトのほとんどの機能を使用できます。
  2. リアルタイムで更新された取り消しツリー。変更を行うと、元に戻すツリーが同時に更新されます。
  3. 現在のチェンジセット、次のやり直しチェンジセット、保存されたチェンジセットなど、いくつかの便利なマーク。
  4. 相対タイムスタンプと絶対タイムスタンプを切り替えます。
  5. リアルタイムで更新された取り消しウィンドウ。
  6. 元に戻す履歴をクリアする機能。
  7. よりカスタマイズ可能。

私は数年前にGundoからundotreeに切り替えましたが、非常にうまく機能しています。


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.