# 插入当前时间插件
### 制作插件
插件放置地址,工程路径:`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
~~~
- 序言
- 安装
- 汉化
- 快捷键 Win
- 快捷键 MAC
- Features(功能)
- Alignment
- 设置字体及字体大小
- 自定制代码片段
- 快速补全
- HTML
- CSS
- 安装插件
- Emmet
- JsMinifier
- Sublime CodeIntel
- Bracket Highlighter
- CSScomb CSS
- SublimeTmpl
- SideBarEnhancements
- ColorPicker
- Tag
- Clipboard History
- GBK to UTF8
- SFTP
- WordPress
- PHPTidy
- YUI Compressor
- SublimeLinter
- ConvertToUTF8
- AutoFileName
- IMESupport
- FileDiffs
- View In Browser
- HTML-CSS-JS Prettify
- 插件开发
- sublime插件开发教程(附源码)
- 插入当前时间插件
- 自定义插件
- Sublime-thinkphp
- 其他技术
- 添加右键打开的操作
- 激活
- Sublime Text3 3103 激活码
- 常见错误
- an error occurred installing package control
- Sublime Text 全局搜索Ctrl+Shift+F快捷键不能用