.haml 파일을 업데이트하고 저장할 때마다 콘솔 라인 “haml [filename.haml] [filename.html]”을 자동으로 실행하도록 Notepad ++를 어떻게 설정합니까?
답변
Python Script 플러그인 으로이 작업을 수행 할 수 있습니다.
notepad.clearCallbacks([NOTIFICATION.FILESAVED])
# Define the function to call just after the file is saved
def runHaml(args):
filename = notepad.getBufferFilename(args["bufferID"])
if filename[-5:] == '.haml':
cmd = r'cmd /c C:\path\to\haml "{0}" "{1}.html"'.format(filename, filename[:-5])
console.write(cmd + "\n")
console.run(cmd)
# ... and register the callback
notepad.callback(runHaml, [NOTIFICATION.FILESAVED])
이를 startup.py에 추가하여 시작시 자동으로 실행되도록 할 수 있습니다 (Python 스크립트 구성도 “ATSTARTUP”으로 변경).