반응형

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" }
]

 

반응형

+ Recent posts