2010-11-29 17 views
0

vim-surroundのcsコマンドを実行しようとしました。しかし、残念ながら、私はE319を持っています:残念ですが、コマンドはこのバージョンのメッセージでは利用できません。vim-surround、csコマンドE319:申し訳ありません、コマンドはこのバージョンでは利用できません

VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Nov 27 2010 19:38:25) 
MacOS X (unix) version 
Included patches: 1-47 
Compiled by [email protected] 
Normal 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 +multi_byte +multi_lang -mzscheme +netbeans_intg +odbeditor 
-osfiletype +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 
    system vimrc file: "$VIM/vimrc" 
    user vimrc file: "$HOME/.vimrc" 

おかげ

+0

@NedBatchelder、質問は疑問符の不足にもかかわらず私にはっきりしています。私はあなたにもそうだと推測しています。おそらく人々を少し余裕をもって切り詰めることを検討するでしょうか? –

答えて

0

あなたはsurround.vimをインストールしました:私はこれが私のVimのバージョンであるhttp://amix.dk/vim/vimrc.html

からのvimrcを使うのか?

サラウンド機能はVimでは組み込まれていませんが、私が言及したプラグインが必要です。

他の人の.vimrcを使用したとしても、プラグインをインストールする必要があります。インストール手順については、リンクを参照してください。 (githubに最新バージョンがあるかもしれません)。

プラグインを手動でインストールする(つまり、〜/ .vim /ディレクトリに手動でファイルをダウンロードしてコピーする)か、.vimrcファイルの先頭に記載されているようにsvnを使用するか、そのような最新のプラグインのバージョンを取得します。

編集: サラウンドが正しくインストールされている場合は、コマンドの長いリストで
:verbose map

を入力して、あなたのようなものが表示されるはずです。

x s <Plug>Vsurround
Last set from ~\vimfiles\bundle\surround\plugin\surround.vim
n ySS <Plug>YSsurround
Last set from ~\vimfiles\bundle\surround\plugin\surround.vim n ySs <Plug>YSsurround
Last set from ~\vimfiles\bundle\surround\plugin\surround.vim
n yss <Plug>Yssurround
Last set from ~\vimfiles\bundle\surround\plugin\surround.vim
n yS <Plug>YSurround
Last set from ~\vimfiles\bundle\surround\plugin\surround.vim
n ys <Plug>Ysurround
Last set from ~\vimfiles\bundle\surround\plugin\surround.vim

surround.vimのパスをファイルはインストールによって異なる場合がありますが、定義されたコマンドが表示されます。

+0

ありがとうございます。私の悪い:-( – diorahman

関連する問題