SSH経由のVimで色を有効にする方法は?


9

2つのリモートサーバーがあります。

サーバー1:Linux 2.6.18-238.12.1.el5PAE i686 / VIM-Vi IMproved-バージョン7.0.237
サーバー2:Linux 2.6.18-338.19.1.el5.lve0.8.36 x86_64 / VIM-Vi IMprovedバージョン7.0。 237

私がサーバー2にsshし、vimを使用してa phpまたは.htaccessファイルを編集すると、美しい色で強調表示されます。以下は/etc/vimrcそのサーバー上のファイルです。

サーバー1にSSH接続すると、色が表示されません。以下のコードをサーバー1の〜/ .vimrcファイルにコピーしてみましたが、カラー構文が機能していません。他の機能(などset nocompatible)は機能していますが、色は機能していません。

サーバー1で色が機能しないのはなぜですか?どのようにテストして修正できますか?tput colors両方の端末で戻ります8。私は試しましたが、それも助けには:syntax onなり:syntax enableません。

------------------------------------------------------------

/etc/vimrcファイルの内容:

if v:lang =~ "utf8$" || v:lang =~ "UTF-8$"
   set fileencodings=utf-8,latin1
endif

set nocompatible    " Use Vim defaults (much better!)
set bs=indent,eol,start     " allow backspacing over everything in insert mode
"set ai         " always set autoindenting on
"set backup     " keep a backup file
set viminfo='20,\"50    " read/write a .viminfo file, don't store more
            " than 50 lines of registers
set history=50      " keep 50 lines of command line history
set ruler       " show the cursor position all the time

" Only do this part when compiled with support for autocommands
if has("autocmd")
  augroup redhat
    " In text files, always limit the width of text to 78 characters
    autocmd BufRead *.txt set tw=78
    " When editing a file, always jump to the last cursor position
    autocmd BufReadPost *
    \ if line("'\"") > 0 && line ("'\"") <= line("$") |
    \   exe "normal! g'\"" |
    \ endif
  augroup END
endif

if has("cscope") && filereadable("/usr/bin/cscope")
   set csprg=/usr/bin/cscope
   set csto=0
   set cst
   set nocsverb
   " add any database in current directory
   if filereadable("cscope.out")
      cs add cscope.out
   " else add database pointed to by environment
   elseif $CSCOPE_DB != ""
      cs add $CSCOPE_DB
   endif
   set csverb
endif

" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
  syntax on
  set hlsearch
endif

if &term=="xterm"
     set t_Co=8
     set t_Sb=%dm
     set t_Sf=%dm
endif

:バージョン出力

VIM - Vi IMproved 7.0 (2006 May 7, compiled Aug  4 2010 07:21:18)
Included patches: 1, 3-4, 7-9, 11, 13-17, 19-26, 29-31, 34-44, 47, 50-56, 58-64, 66-73, 75, 77-92, 94-107, 109, 202, 234-237
Compiled by <bugzilla@redhat.com>
Tiny 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 -cryptv -cscope -cursorshape -dialog -diff -digraphs -dnd -ebcdic -emacs_tags -eval -ex_extra -extra_search -farsi
-file_in_path -find_in_path -folding -footer +fork() -gettext -hangul_input +iconv -insert_expand -jumplist -keymap -langmap -libcall -linebreak -lispindent -listcmds -localmap -menu -mksession -modify_fname -mouse -mouse_dec -mouse_gpm -mouse_jsbterm -mouse_netterm
-mouse_xterm +multi_byte -multi_lang -mzscheme -netbeans_intg -osfiletype -path_extra -perl -printer -profile -python -quickfix -reltime -rightleft -ruby -scrollbind -signs -smartindent -sniff -statusline -sun_workshop -syntax -tag_binary -tag_old_static -tag_any_white
 -tcl +terminfo -termresponse -textobjects -title -toolbar -user_commands -vertsplit -virtualedit -visual -viminfo -vreplace +wildignore -wildmenu -windows +writebackup -X11 -xfontset -xim -xsmp -xterm_clipboard -xterm_save
   system vimrc file: "/etc/virc"
     user vimrc file: "$HOME/.vimrc"
      user exrc file: "$HOME/.exrc"
  fall-back for $VIM: "/usr/share/vim"
Compilation:
gcc -c -I. -Iproto -DHAVE_CONFIG_H     -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2
Linking: gcc   -L/usr/local/lib -o vim       -lselinux -ltermcap -lacl

1
PHPファイルを開いてと入力し:set term:set filetype結果を提供します。
クォンタム2011

term = xterm、E519:オプションはサポートされていません:filetype
cwd

回答:


12

私は、あなたが持っていると思われるalias vim=vi中を~/.bashrc。これを試して、エイリアスではなく「実際の」コマンドを実行します。

\vim /path/to/php/file

CentOSを実行しているようです。vim-enhancedパッケージがインストールされていることを確認してください:

rpm -qa | grep vim
vim-minimal-7.0.109-4.el5_2.4z
vim-enhanced-7.0.109-7.el5
vim-common-7.0.109-7.el5

私は拡張バージョンをインストールし、それが違いを生むかどうかを確認します。これを調べてくれてありがとう。
cwd 2011

4

vimのバージョン出力から、それがvim-tinyであり、-syntaxオプションでコンパイルされていないことがわかります。

またexport TERM=xterm-256color、bashrcに入れて、完全なメリットを得ます...


4

を使用sshfsしてリソースをマウントし、ローカルのvimを使用してこれらのファイルを編集することもできます。

Vimはリモートファイルを編集することもできます。これの優れた点は、カスタマイズされた使い慣れたvim構成で快適に編集できることです。

vi scp://username@example.com/path/to/file


0

クライアント端末がカラーTERMを設定せず、代わりにCOLORTERMを設定する特定のケースがあります。これを行う:

クライアントマシンでに追加SendEnv COLORTERM/etc/ssh/ssh_config、サーバーでに追加AcceptEnv COLORTERM/etc/ssh/sshd_configます。

sshd(service sshd reload)をリロードして再接続します。

サーバーがCentOS / RHELであり/etc/profile/256term.sh(パッケージによって提供されるinitscripts)あり、これがデフォルトで行われた場合、これは自動的にに設定さTERMxterm-256color、bash(ls ...)で色が有効になり、vimで色が有効になります。

quantaがすでに指摘しているように、viしかない場合は、vim-enhancedをインストールします。

クライアント端末がすでに色TERMを設定している場合、これが必要かどうかはわかりません。TERM = xtermがハードコードされているターミネーターを回避するには、これを行う必要がありました。ubuntuのgnome-terminalにはデフォルトのTERM xterm-256colorがあるので、sshでSend / AcceptEnvを使用しなくてもカラーは機能します。


0

SSHを使用したコンソールでは、viが拡張されていない可能性があります。vimをインストールするか、vimをviにエイリアスする必要がありましたが、正常に機能しました。コメントの「E519:Option not supported:filetype」では、この情報を提供しています。

これに関する役立つ情報がここに見つかりまし

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