$ VIMの誤った置換

$ VIMの誤った置換

vim私は開発サーバーで直接作業しており、すべてのシステムユーザーのためではなく、私の目的のために独自のサーバーを構築したいと思います。ビルドシナリオは次のとおりです。

hg clone https://vim.googlecode.com/hg/ vim
cd vim/src
./configure --enable-rubyinterp --enable-multibyte
make

結果./vim --versionは次のとおりです。

VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Jun 22 2011 09:35:46)
Included patches: 1-230
Compiled by aeg@dev
Normal version without 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 +diff +digraphs 
-dnd -ebcdic -emacs_tags +eval +ex_extra +extra_search -farsi +file_in_path 
+find_in_path +float +folding -footer +fork() +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 +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 +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"
      user exrc file: "$HOME/.exrc"
  fall-back for $VIM: "/usr/local/share/vim"
Compilation: 
gcc -c -I. -Iproto -DHAVE_CONFIG_H     -g -O2 -D_FORTIFY_SOURCE=1      
Linking: gcc   -L.  -rdynamic -Wl,-export-dynamic  -L/usr/local/lib -Wl,--as-needed -o vim       -lm -lncurses -lnsl         -lruby1.8 -lpthread -lrt -ldl -lcrypt -lm  -L/usr/lib

ビルドしたvimを開くと、次のようになります。

Error detected while processing /home/aeg/.vimrc:
line  148:
E484: Can't open file /usr/local/share/vim/syntax/syntax.vim

問題は/usr/local/share/vimがないためです。私のプラグインがあり、./vimvimはこのパスを見つけたいと思います。

Debianですが/usr/bin/vim設定が異なりますfall-back for $VIM: "/usr/share/vim"

ベストアンサー1

走ることを忘れてしまったようですmake install

実行してもmake installそこにvimファイルが見つからない場合は、/usr/local/share/vim権限の問題がある可能性があります。つまり、そこにファイルをインストールすることはできません。

後者が正しい場合は、設置場所を制御できる場所に設定してビルドしてください。

$ cd vim/src
$ ./configure --enable-rubyinterp --enable-multibyte --prefix=/home/aeg/myvim
$ make
$ make install
$ export PATH=/home/aeg/myvim/bin:$PATH
$ vim

おすすめ記事