오른쪽에서 왼쪽으로 입력


13

Vim을 오른쪽에서 왼쪽으로 만드는 명령이 있습니까? 이 플러그인에 대해 아는 사람이 없다면?


9
아랍어 아랍어 Farsi와 같이 오른쪽에서 왼쪽으로 쓰는 언어와 관련하여 이야기하고 있습니까, 아니면 일반적인 서양 알파벳 문자를 입력 할 때 커서를 왼쪽으로 이동 하시겠습니까? 보다 구체적으로 질문을 편집하십시오.
Caleb

답변:


21

확실한!

: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.

내가 찾던 효과가 아니라 내가 묻는 질문에 대한 정답이었습니다. 실제로 왼쪽에서 오른쪽 파일로 작업하고 있습니다. 때로는 진술을 거꾸로 정의하고 싶습니다. 문서의 흐름을 바꾸지 않고 오른쪽에서 왼쪽으로 몇 문자를 입력하는 방법이 있습니까?
MageProspero

내가 그것을 놓친 것에 대한 업데이트를 위해 타이. 감사합니다.
MageProspero
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.