Open a file in a tab in vim in readonly mode

VimTabsReadonly

Vim Problem Overview


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.

Vim Solutions


Solution 1 - Vim

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.

Solution 2 - Vim

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

:view /path/to/file

or from command line:

$ vim -M /path/to/file

Solution 3 - Vim

vim -M filename opens the file in readonly mode.

Solution 4 - Vim

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

Solution 5 - Vim

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.

Solution 6 - Vim

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.

Solution 7 - Vim

Something that works for me:

:vnew path/to/file

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

:view

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSrikanthView Question on Stackoverflow
Solution 1 - VimZyXView Answer on Stackoverflow
Solution 2 - Vimuser2015258View Answer on Stackoverflow
Solution 3 - VimMr LouView Answer on Stackoverflow
Solution 4 - VimJeyamaranView Answer on Stackoverflow
Solution 5 - VimWyatt AndersonView Answer on Stackoverflow
Solution 6 - VimghchoiView Answer on Stackoverflow
Solution 7 - VimVivekView Answer on Stackoverflow