반응형
sublime 단축키 plugin 만들기
주석에 날짜를 넣어서 삽입하는 단축키 만들기
Tools > Developer > New Plugin... 선택 후 아래와 같이 입력.
import sublime
import sublime_plugin
import time
class InsertDatetimeCommand(sublime_plugin.TextCommand):
def run(self, edit):
sel = self.view.sel();
for s in sel:
self.view.replace(edit, s, time.strftime("<!-- %Y-%m-%d -->"))
그리고, 단축키 등록.
Preferences > Key Bindings 선택
[
{ "keys": ["ctrl+shift+i"], "command": "insert_datetime" }
]
반응형
'프로그래밍' 카테고리의 다른 글
소규모 스타트업이 Firebase를 써야 하는 이유 (0) | 2020.10.22 |
---|---|
Full stack developer. 풀스택 개발 (0) | 2020.10.20 |
네이버 클라우드, 뭔가 큰 도약인가? (0) | 2020.10.15 |
우편번호 서비스 (0) | 2020.10.14 |
Alt + 엔터 줄바꿈 제거하기 | 엑셀 함수 공식 (0) | 2020.10.14 |