在 vim 的选项卡中以只读模式打开文件

发布于 2024-09-29 18:14:43 字数 143 浏览 2 评论 0原文

我知道使用 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?

Thanks for your time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(7

赠我空喜 2024-10-06 18:14:43

要在新选项卡中以只读模式打开文件,请使用

tab sview /path/to/file

要在同一窗格中打开文件(不使用新窗口或选项卡),请使用

view /path/to/file

请注意 tab view /path/to/file 打开新选项卡。

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

Note that tab view /path/to/file does not open a new tab.

被翻牌 2024-10-06 18:14:43

您可以从 vim 内部以只读模式打开文件:

:view /path/to/file

或从命令行:

$ vim -M /path/to/file

You can open a file in readonly mode from inside vim:

:view /path/to/file

or from command line:

$ vim -M /path/to/file
压抑⊿情绪 2024-10-06 18:14:43

vim -M filename 以只读模式打开文件。

vim -M filename opens the file in readonly mode.

作妖 2024-10-06 18:14:43

只需使用 :tabe 打开文件,然后输入 :view。它将自动切换到只读模式。

Just open your file by using :tabe <filename>, then enter :view. It will automatically switch to read-only mode.

对你的占有欲 2024-10-06 18:14:43
vim -R /path/to/file
vim -m /path/to/file

只读模式。
允许修改文本,但不能写入(不保存)。

vim -M /path/to/file

即使是文本修改也是不允许的。

vim -R /path/to/file
vim -m /path/to/file

Read-only mode.
Modification in text is allowed but you cannot write (no saving).

vim -M /path/to/file

Even modification in text is not allowed.

心清如水 2024-10-06 18:14:43

尝试 :tabedit +set\ noma|set\ ro FILE;这将在新选项卡中打开FILE,并关闭可修改并打开readonly,从而阻止您修改或写入文件。如果您只想readonly,请忽略noma 设置。将其重新映射到另一个命令可能会很方便。

Try :tabedit +set\ noma|set\ ro FILE; this will open FILE in a new tab with modifiable off and readonly on, preventing you from modifying or writing the file. If you just want readonly, omit the noma set. Might be convenient to remap this to another command.

机场等船 2024-10-06 18:14:43

对我有用的东西:

:vnew path/to/file

打开文件后,给出查看命令:

:view

Something that works for me:

:vnew path/to/file

and once the file is opened, give the view command:

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