如何从 vim 启动 chrome/chromium?

发布于 2024-11-08 21:47:10 字数 82 浏览 0 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹊巢 2024-11-15 21:47:10

将以下内容放入您的 ~/.vimrc 中:

map <F8> :!chrome /path/to/file<CR>

!命令告诉 vim 使用 shell 运行以下命令。在这种情况下,请将 替换为您喜欢的击键,将 chrome 替换为从计算机上的 shell 中打开 chrome/chromium 的命令(可能是 google-铬)。显然,您还必须将 /path/to/file 更改为您希望 chrome 启动时打开的文件。

Put the following in your ~/.vimrc:

map <F8> :!chrome /path/to/file<CR>

The ! command tells vim to run the following command with the shell. In this case, replace <F8> by your preferred keystroke and chrome by the command which opens chrome/chromium from the shell on your machine (probably google-chrome). Obviously, you also have to change the /path/to/file to the file you want chrome to open when it starts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文