import datetime, getpass from datetime
import timedelta import sublime, sublime_plugin
class TommorowCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.view.run_command("insert_snippet", { "contents": "%s" % datetime.date.today() + datetime.timedelta(days=1) } )
class YesterdayCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.view.run_command("insert_snippet", { "contents": "%s" % datetime.date.today() - datetime.timedelta(days=1) } )
上記のコードを として保存しtime.py
、コマンドをホットキーにマッピングして、エディターに昨日と明日の日付を挿入しました。
ここで何が間違っていますか?