Skip to content

Instantly share code, notes, and snippets.

@tmacam
Forked from tpitale/README.md
Created July 20, 2022 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmacam/728cddd9825ad8ce8ad048837433a741 to your computer and use it in GitHub Desktop.
Save tmacam/728cddd9825ad8ce8ad048837433a741 to your computer and use it in GitHub Desktop.
Sublime Text plugin to create a simple timestamp
  1. Go to Tools > New Plugin
  2. Paste timestamp.py contents and save in User as timestamp.py
  3. Open Preferences > Key Bindings - User (or Default, your call)
  4. Paste keybindings.json, or add a line to your keybindings
  5. Customize the keyboard shortcut to your liking and save
[
{ "keys": ["ctrl+shift+n"], "command": "timestamp" }
]
import datetime
import sublime, sublime_plugin
class TimestampCommand(sublime_plugin.TextCommand):
def run(self, edit):
timestamp = "\n[%s]\t" % (datetime.datetime.now().strftime("%Y-%m-%d %H:%M"))
self.view.insert(edit, self.view.sel()[0].begin(), timestamp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment