企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 插入当前时间插件 ### 制作插件 插件放置地址,工程路径:`Sublime Text 3x64\Data\Packages\User\addCurrentTime.py` 创建文件:**addCurrentTime.py** 输入一下代码: ~~~ import datetime import sublime_plugin class AddCurrentTimeCommand(sublime_plugin.TextCommand): def run(self, edit): self.view.run_command("insert_snippet", { "contents": "%s" % datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") } ) ~~~ ### 设置调用 开发工具路径:`Preference → Key Bindings - User ` ~~~ [ {"keys": ["shift+alt+d"], "command": "add_current_time"} ] ~~~ ### 使用快捷 : ~~~ shift+alt+d ~~~