从vim中运行PHP文件

是否可以从 vim中运行 PHP文件?我试图在这里做的是有一个快捷方式,所以每当我需要运行我正在编辑的文件时跳过退出vim并手动调用PHP解释器
是!你可以做你想做的事.都从vim中运行PHP,并创建一个快捷方式.

Matthew Weier O’Phinney写道:

Probably the most useful thing I’ve
done as a PHP developer is to add
mappings to run the current file
through (a) the PHP interpreter (using
Ctrl-M),and (b) the PHP interpreter’s
linter (using Ctrl-L).

Vim Productivity Tips for PHP Developers

例:

:autocmd FileType PHP noremap <C-M> :w!<CR>:!/usr/bin/PHP %<CR>

或者(这不检查文件类型要小心)

:map <C-M> :w!<CR>:!/usr/bin/PHP %<CR>

Joe’Zonker’Brockmeier写道:

Vim also allows you to execute a
command directly from the editor,
without needing to drop to a shell,by
using bang (!) followed by the command
to be run. For instance,if you’re
editing a file in Vim and want to find
out how many words are in the file,
run

:! wc %

Vim tips: Working with external commands

相关文章

普通模式 >G 增加当前行到文档末尾处的缩紧层级 $ 移动到本行的末尾 . 相当于一个...
原文连接: https://spacevim.org/cn/layers/lang/elixir/ 模块简介 功能特性 启用模块 快捷键 语言专属...
原文连接: https://spacevim.org/cn/layers/lang/dart/ 模块简介 功能特性 依赖安装及启用模块 启用模...
 =   赋值操作符,可以用于算术和字符串赋值 +        加法计算     -        减法运算...
1.根据包名来查看指定的APP指定数据 adb shell "top | grep com.xxx.xxx" 由于这样打印出来的数...
ctrl+F 向下翻页 ctrl+B 向下翻页 u 取消最近一次操作 U 取消当前行的操作 ZZ 保存当前内容并退出 gg 跳...