Apple script 를 이용한 TextWrangler editor 확장하기
아래는 필자가 많이 사용한는 eclipse 의 shortcut을 Textwrangler에 매핑하는 예제임.
1) Apple script 작성하기 - 1라인 중복카피 (duplicate line), 선택라인 삭제 (delete selected line)
tell application "TextWrangler"
tell window 1
select line the (startLine of the selection)
copy (contents of the selection) as text to myText
set the contents of the selection to myText & myText
end tell
end tell
tell application "TextWrangler"
tell window 1
select line the (startLine of the selection)
delete the selection
end tell
end tell
2) 저장하기 ( Textwrangler script folder)
3) TextWrangler Script windows 열기
4) 원하는 Shortcut 할당하기
점점더 Textwrangler 를 사랑하게 될듯 하네요. :)