여러 줄 지침


9

한 줄 명령을 여러 줄로 나누는 방법이 있습니까?

예를 들어, 변환하고 싶습니다

setlocal variable_name = condition1 ? "1" : condition2 ? "0" : condition3 ? "a long string" : "another long string" 

으로

setlocal variable_name = condition1 ? "1" : 
                         condition2 ? "0" : 
                         condition3 ? "a long string" : 
                                      "another long string" 

그러나 위와 같이 시도하면 "잘못된 인수"오류가 발생합니다.

답변:


11

vimscript에 여러 줄을 넣으려면 다음 줄 앞에 \

setlocal variable_name = condition1 ? "1" : 
                       \ condition2 ? "0" : 
                       \ condition3 ? "a long string" : 
                       \              "another long string" 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.