I have accidently :set rl thinking it's for relative lines. I have activated right to left mode. The doc for rightleft doesn't say how to reverse rl mode without exiting vim.
How does one go left to right in vim?
I have accidently :set rl thinking it's for relative lines. I have activated right to left mode. The doc for rightleft doesn't say how to reverse rl mode without exiting vim.
How does one go left to right in vim?
:set norl
or
:set norightleft
Each boolean option in Vim has a corresponding no-option that turns it off.
The option you were originally looking for might have been relativenumber (rnu), which acts like number (nu) but adds line numbers that are relative to the current line rather than to the start of the editing buffer.