":normal" 명령에서 ^[가 A에 대해 작동하지 않는 것 같은 이유는 무엇입니까? (윔)

":normal" 명령에서 ^[가 A에 대해 작동하지 않는 것 같은 이유는 무엇입니까? (윔)

normal오늘 몇 가지 vim 명령을 배웠습니다 .

:normal i Insert ^[ yyp
:normal A Append ^[ yyp


# RESULT OF EXECUTE FIRST COMMAND FOR SEVERAL TIMES
 Insert Insert  
  Insert Insert Insert  
   Insert Insert Insert Insert  
    Insert Insert Insert Insert Insert  
    Insert Insert Insert Insert Insert  


 # RESULT OF EXECUTE SECOND COMMAND FOR SEVERAL TIMES
 Append  Append  Append  Append  Append  Append 

두 번째 명령이 해당 yyp부분을 무시하는 이유는 무엇입니까? 어떻게 고치나요?

답변1

^[두 번째 부분 이후에 공백을 남겼습니다. 공백 없이 명령어를 입력하면 원하는 대로 동작합니다.

    :normal A Append^[yyp

관련 정보