Come abilitare il colore in Vim su SSH?


9

Ho due server remoti:

Server 1: Linux 2.6.18-238.12.1.el5PAE i686 / VIM - Vi IMproved - versione 7.0.237
Server 2: Linux 2.6.18-338.19.1.el5.lve0.8.36 x86_64 / VIM - Vi IMproved versione 7.0. 237

Quando utilizzo SSH Server 2 e uso VIM per modificare un file phpo .htaccess, ha una bella evidenziazione del colore. Di seguito è riportato il /etc/vimrcfile su quel server.

Quando accedo al Server 1, non viene visualizzato alcun colore. Ho provato a copiare il codice seguente nel mio file ~ / .vimrc sul Server 1, ma la sintassi del colore non funziona. Le altre funzionalità (come set nocompatible) funzionano, ma non i colori.

Perché il colore non funziona sul Server 1 e come posso testarlo e risolverlo? tput colorssu entrambi i terminali ritorna 8. Ci ho provato :syntax one :syntax enablenon aiuta neanche.

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

Contenuto del /etc/vimrcfile:

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

: versione output

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
Aprire il file PHP, tipo :set term, :set filetypee ci darà il risultato.
quanta,

termine = xterm, E519: opzione non supportata: tipo di file
cwd

Risposte:


12

Ho il sospetto che si dispone di un alias vim=via ~/.bashrc. Prova questo per eseguire il comando 'reale', non alias:

\vim /path/to/php/file

Sembra che tu stia eseguendo CentOS. Assicurati di aver installato il vim-enhancedpacchetto:

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

installerò la versione migliorata e vedrò se questo fa la differenza. grazie per aver esaminato questo.
Cwd,

4

Dalla tua versione di output di vim puoi dire che è vim-tiny e non è compilato con l' -syntaxopzione.

export TERM=xterm-256colorInserisci anche il tuo bashrc per ottenere il massimo beneficio ...


4

Puoi anche usare sshfsper montare la risorsa in modo che il tuo vim locale sia usato per modificare questi file.

Vim può anche modificare file remoti. Il bello di questo è che puoi quindi modificare comodamente dalla tua configurazione vim personalizzata e familiare.

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


0

Esiste un caso specifico in cui se il terminale client non imposta un TERM colore ma imposta COLORTERM. Fai questo:

Sul tuo computer client, aggiungi SendEnv COLORTERMin /etc/ssh/ssh_confige sul server aggiungi AcceptEnv COLORTERMin /etc/ssh/sshd_config.

Ricarica sshd ( service sshd reload) e riconnetti.

Se il tuo server è CentOS / RHEL e ha /etc/profile/256term.sh(fornito dal pacchetto initscripts), che il mio ha fatto di default, questo dovrebbe automaticamente impostare TERMsu xterm-256color, abilita color in bash (ls ...) e abilita color in vim.

Come già sottolineato da quanta se hai solo vi, installa vim-ottimizzato.

Non sono sicuro se questo è necessario se il tuo terminale client imposta già un TERM a colori. Ho dovuto fare questo per aggirare Terminator con un hardcoded TERM = xterm. gnome-terminal su Ubuntu ha un TERM predefinito xterm-256color, quindi il colore può funzionare senza la necessità di inviare / accettareEnv in ssh.


0

Penso che in realtà potresti avere vi e non potenziato con vim sulla console su cui hai SSH. Ho dovuto installare o alias vim su vi e ha funzionato normalmente per me. "E519: Opzione non supportata: tipo di file" nel tuo commento, fornisce queste informazioni.

Ho trovato informazioni utili al riguardo qui .

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.