답변:
확실한!
:set rightleft
아니면 그냥 rl
. 그러나 이렇게하면 파일을 입력 한 순서대로 문자와 함께 파일이 저장됩니다. 파일을 반대로 저장하려면 저장 :%!rev
하기 전에 입력하십시오 .
편집하다:
revins
또는 ri
옵션 을 사용하면 삽입이 거꾸로 수행됩니다. 아마도 이것을 주요 조합으로 매핑 할 수는 있지만 그것은 당신에게 달려 있습니다.
다음은 vim 도움말의 해당 섹션입니다.
o Typing backwards *ins-reverse*
----------------
In lieu of using full-fledged the 'rightleft' option, one can opt for
reverse insertion. When the 'revins' (reverse insert) option is set,
inserting happens backwards. This can be used to type right-to-left
text. When inserting characters the cursor is not moved and the text
moves rightwards. A <BS> deletes the character under the cursor.
CTRL-W and CTRL-U also work in the opposite direction. <BS>, CTRL-W
and CTRL-U do not stop at the start of insert or end of line, no matter
how the 'backspace' option is set.
There is no reverse replace mode (yet).
If the 'showmode' option is set, "-- REVERSE INSERT --" will be shown
in the status line when reverse Insert mode is active.