如何在 Windows 版 GVIM 中使用 sudo tee

如何在 Windows 版 GVIM 中使用 sudo tee

我可以使用类似

:w !sudo tee %

在 Windows 版 GVIM 中?有类似物吗?

或者我可以只禁用一个程序的 UAC 并始终以管理员身份运行它吗?

答案1

这很难;你可以尝试SudoEdit.vim - 使用 sudo 或 su 或任何其他工具编辑文件插入。

但最简单的方法可能是直接启动 (G)Vim 并提升其权限。

答案2

安装 msys2/cygwin 或者包括 tee.exe 和https://github.com/mattn/sudo 然后做:w !sudo cmd /c tee %

相关内容