Tool > Developer > New Plugin 아래 소스넣고 저장 import datetime, getpass import sublime, sublime_plugin class AddDateCommand(sublime_plugin.TextCommand): def run(self, edit): self.view.run_command("insert_snippet", { "contents": "%s" % datetime.date.today().strftime(" %Y-%m-%d ") } ) 단축키 설정 [ { "keys": ["ctrl+shift+/"], "command": "add_date" } ]