Home > php教程 > php手册 > FreeBSD下的vi支持中文显示和编辑

FreeBSD下的vi支持中文显示和编辑

WBOY
Release: 2016-06-21 08:59:12
Original
909 people have browsed it

最近开发PHP需要使用vi,但是php文件中需要支持中文,于是请教同事,有了结果。

以前是使用putty连接到freebsd服务器上,但是好像输入中文有问题,所以使用F-Secure SSH Client 5.4,使用 SSH Client也可以,比putty强点,不过没有那么方便。

要使vi中的代码加亮等,好像要使用bash,freebsd默认是csh,所以要修改一下:

% chpass heiyeluren

      #Changing user database information for heiyeluren.
      Shell: /usr/local/bin/bash
      Full Name: heiyeluren
      Office Location:
      Office Phone:
      Home Phone:
      Other information:

如果你的shell是csh,那么你就修改成Shell: /usr/local/bin/bash

那么初步你就有加亮功能了,比如你ls一下的话,就能看见不同颜色了

然后你的主目录下就会出现 .bash_profile 文件,就是你的配置文件,你配置成下面这样:

      1 #PS1="[\u@\H \w]\\$ "
      2 PS1="[\w]\\$ "
      3 alias vi='vim'
      4 alias ll='ls -al'
      5 LANG=zh_CN.EUC
      6 EDITOR=vim
      7 TERM=linux
      8 #TERM=xterm
      9 export LANG EDITOR TERM
     10 export CLICOLOR=1
     11 export PATH=/usr/local/bin:$PATH
     12 export CVSROOT=:pserver:heiyeluren@cvs:/home/cvs/CVS

注意上面几项内容:LANG=zh_CN.EUC,TERM=linux之类的,你修改一下跟上面类似。

最后再修改 .exrc 文件成下面的样子:

      1 syntax on
      2 set tabstop=4
      3 set autoindent
      4 set nu


保存修改就可以了。不过这时候不要关闭本终端,最好另外开一个终端,然后连接过去,如果能登陆最好,不能登陆马上修改回去,呵呵。


现在就能够高亮显示文件,并且能够支持显示和编辑中文了,比较爽了吧。

推荐使用F-Secure SSH Client ,并且把背景设为黑色就OK了。



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template