如何从 vim 启动 chrome/chromium?
我正在 vim 中寻找一个可以启动 chrome/chromium 并让它始终打开同一个本地文件的快捷方式?
PS:在ubuntu上
I'm looking for a shortcut in vim that would launch chrome/chromium and have it always open the same local file ?
ps: on ubuntu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将以下内容放入您的
~/.vimrc
中:!命令告诉 vim 使用 shell 运行以下命令。在这种情况下,请将
替换为您喜欢的击键,将chrome
替换为从计算机上的 shell 中打开 chrome/chromium 的命令(可能是google-铬
)。显然,您还必须将/path/to/file
更改为您希望 chrome 启动时打开的文件。Put the following in your
~/.vimrc
:The ! command tells vim to run the following command with the shell. In this case, replace
<F8>
by your preferred keystroke andchrome
by the command which opens chrome/chromium from the shell on your machine (probablygoogle-chrome
). Obviously, you also have to change the/path/to/file
to the file you want chrome to open when it starts.