码迷,mamicode.com
首页 > 其他好文 > 详细

为Sublime Text 2添加插入当前时间的命令

时间:2014-11-25 00:19:27      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   使用   sp   

  作者:zhanhailiang 日期:2014-11-25

想在代码注释时插入当前时间发现Sublime Text 2不支持,于是编写插件实现插入时间功能:

1. 创建插件:

Tools → New Plugin:

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") 
            }
        )

保存为Sublime Text 2\Packages\User\addCurrentTime.py

2. 创建快捷键:

Preference → Key Bindings - User:

[
    {
        "command": "add_current_time",
        "keys": [
            "ctrl+shift+."
        ]
    }
]

3. 此时使用快捷键ctrl+shift+.即可在当前光标处插入当前时间,如下:

bubuko.com,布布扣

4. 参考:

为Sublime Text 2添加插入当前时间的命令

标签:style   blog   http   io   ar   color   os   使用   sp   

原文地址:http://blog.csdn.net/billfeller/article/details/41460345

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!