本文介绍了以只读模式在 vim 中的选项卡中打开文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道使用 vim -R
从 shell 以只读模式打开文件,但是如何在单独的选项卡中从 vim 内部打开文件 (:tabe ;
) 处于只读模式?
I'm aware of opening files in readonly mode from shell using vim -R
, but how to open a file from inside vim in a separate tab (:tabe <filename>
) in readonly mode?
感谢您的时间.
推荐答案
要在新标签页中以只读模式打开文件,请使用
To open a file in read only mode in a new tab, use
tab sview /path/to/file
要在同一窗格中打开文件(不使用新窗口或选项卡),请使用
To open the file in the same pane, (without using a new window or tab), use
view /path/to/file
请注意,tab view/path/to/file
不会打开一个新标签.
Note that tab view /path/to/file
does not open a new tab.
这篇关于以只读模式在 vim 中的选项卡中打开文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!