내 makefile에서 연속 줄에 대해 다음 들여 쓰기를 선호합니다.
FILES:= \
file1.cpp \
file2.cpp \
fileYetAnother.cpp
LIBS:= \
libsth1.so \
libelsewhere.so
여전히 makefile 모드는 다음과 같은 방식으로 들여 쓰기합니다 (파일 또는 영역을 다시 들여 쓸 것인지 물을 때).
FILES:= \
file1.cpp \
file2.cpp \
fileYetAnother.cpp
LIBS:= \
libsth1.so \
libelsewhere.so
어떻게 든 이전 변형을 사용하도록 구성 할 수 있습니까 (= 4 줄이나 탭으로 연속 줄 들여 쓰기)?
indent-according-to-mode
명령?