-
-
Save alissonperez/f2b394c9e092a1911268 to your computer and use it in GitHub Desktop.
This file contains 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
import sublime, sublime_plugin, datetime | |
class InsertTimeCommand(sublime_plugin.TextCommand): | |
def run(self, edit): | |
date_time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') | |
for r in self.view.sel(): | |
self.view.replace(edit, r, date_time) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment