Skip to content

Instantly share code, notes, and snippets.

@reima
Forked from robcowie/timestamp.py
Last active December 11, 2015 20:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save reima/4658650 to your computer and use it in GitHub Desktop.
Save reima/4658650 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
from datetime import datetime
import sublime_plugin
class TimestampCommand(sublime_plugin.EventListener):
"""Expand `isoD`, `now`, `datetime`, `utcnow`, `utcdatetime`,
`date` and `time`
"""
def on_query_completions(self, view, prefix, locations):
if prefix in ('isoD', 'now', 'datetime'):
val = datetime.now().strftime('%Y-%m-%dT%H:%M:%S')
elif prefix in ('utcnow', 'utcdatetime'):
val = datetime.utcnow().strftime('%Y-%m-%dT%H:%M:%S')
elif prefix == 'date':
val = datetime.now().strftime('%Y-%m-%d')
elif prefix == 'time':
val = datetime.now().strftime('%H:%M:%S')
else:
val = None
return [(prefix, prefix, val)] if val else []
@merriam
Copy link

merriam commented Jun 28, 2013

Gists have no pull requests. I when I updated the gist, I stuck it a repo merriam/timestamp https://github.com/merriam/timestamp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment