gpt4 book ai didi

linux - 将文件转换为 html 到位

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:35:51 29 4
gpt4 key购买 nike

TOHtml 可用于将文件转换为 html,但它也会创建一个新文件。例如,如果原始文件名为 test,vim 将创建一个名为 test.html 的新文件。

有没有一种方法可以就地修改文件,即只将 test 转换为 html,而不创建新文件?

最佳答案

:TOhtml 创建一个新的缓冲区。它不会保存它,因此不会创建新的文件。你可以利用这个事实:

" create test.html buffer
:TOhtml
" change back to test buffer
:b test
" destroy it, because we can't save another buffer with this name
" while this one is open
:bd
" switch back to test.html (if you had no other buffers, this is likely unnecessary)
:b test.html
" save it, overwriting the original
:w test

编辑:我相信这是更短的,但仍然在做同样的事情:

:TOhtml
:bd test
:w test

关于linux - 将文件转换为 html 到位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32263181/

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