从 Mac OS X 通过 SSH 进行 PHP 语法高亮显示
我通过 Terminal.app
中的 SSH 连接到我的服务器,以使用 Vim 编辑 PHP 脚本。
我已经安装了一些插件,包括 php.vim 和另一个 php.vim 但它没有向我显示任何内容!那么如何启用突出显示呢?
I connect to my server through SSH in Terminal.app
to use Vim to edit PHP scripts.
I have install some plugins, including php.vim and another php.vim but it doesn't show me anything! So how can I enable highlighting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不需要这些插件,只需将以下内容放入您的
.vimrc
中即可:要进一步调试,您需要确保在打开 PHP 后具有以下
set
文件:您可以像这样检查这些:
您应该看到类似这样的内容:
如果语法突出显示不适用于其他文件类型,请检查以下值:
确保您使用的是允许颜色的终端类型。
There's no need for those plug-ins, simply put the following in your
.vimrc
:To debug further, you need to ensure you have the following
set
once you open a PHP file:You can check these like so:
You should see something like this:
If syntax highlighting isn't working for other file-types, check the values of:
To ensure you're using a terminal type that allows colour.
你不需要这些插件。
只需在正常模式下输入
:syntax on
或将syntax on
添加到服务器上的~/.vimrc
即可。当然,假设您在 UNIX-y 服务器上运行 Vim 的最新版本。
You don't need these plugins.
Just type
:syntax on
in normal mode or addsyntax on
to~/.vimrc
on the server.Assuming, of course, that you run a reasonably recent version of Vim on a UNIX-y server.