This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from datetime import datetime | |
import sublime_plugin | |
# Adding too much documentation: | |
# 1. The original Gist had %M instead of %m in the strftime() class. %M means minute, | |
# while %m means month as a decimal. | |
# 2. To install this: | |
# Sublime's menu Tools -> New Plugin..., |