使用https://gist.github.com/jordan-brough/4007432我得到了一个可以在 sublime 中工作的时间戳,但是时间差了 7 个小时。我怎样才能解决这个问题?我需要设置时区吗?
import sublime, sublime_plugin
from datetime import datetime
class TimestampCommand(sublime_plugin.TextCommand):
def run(self, edit):
stamp = datetime.utcnow().strftime("%m/%d/%y %H:%M %p - ")
for r in self.view.sel():
if r.empty():
self.view.insert (edit, r.a, stamp)
else:
self.view.replace(edit, r, stamp)