gpt4 book ai didi

vi - 如何编辑 _wimrc 以在 vim 中使用 firefox 打开 html 文件?

转载 作者:行者123 更新时间:2023-12-03 15:39:02 25 4
gpt4 key购买 nike

我正在学习html,想在vim中编辑一个html文件,
当我完成 html 文件时,按 F4 以使用 firefox 或 chrome 运行它,
我怎样才能在我的 _vimrc 配置文件中写一行来这样做?
在我的 _vimrc 中:

:map <F4> :w !c:\Program Files\Mozilla Firefox\firefox.exe<cr>   
:map <F5> :w !firefox<cr>

我已经设置了我的环境路径
c:\Program Files\Mozilla Firefox\firefox.exe
它们都无法运行,我得到了找不到命令

当我将配置行修改为:

:map <F4> :w !"c:\Program Files\Mozilla Firefox\firefox.exe"<cr> 

F4可以打开firefox,但是firefox打不开我当前正在编辑的html文件。

  "c:\Program Files\Mozilla Firefox\firefox.exe"    file:\\c:\workspace\test.html      

可以打开test.html,如何在我的_vimrc文件中设置它?

最佳答案

如果您只在控制台中使用 vi(m),这会起作用,但您必须按一次回车键才能返回到编辑器中的 html 文档:

nnoremap <F4> :exe '!"c:\Program Files\Mozilla Firefox\firefox.exe" %'<CR>

如果您使用的是 gvim,这将避免额外的输入时间:

nnoremap <F4> :exe ':silent !"c:\Program Files\Mozilla Firefox\firefox.exe" %'<CR>

关于vi - 如何编辑 _wimrc 以在 vim 中使用 firefox 打开 html 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20941824/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com