얕고넓은지식/Computer knowledge
서브라임텍스트 날짜넣기
쪽마
2023. 5. 1. 00:03
반응형
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" }
]
반응형