Add snippet generating ISO-formatted date

I am a big fan of the ISO date+time format, because it is our only hope
to overcome endless mess which are current zillion non-sensical national
formats.
This commit is contained in:
Matěj Cepl 2016-06-09 11:02:09 +02:00
parent 641ccbefc5
commit a65f3096b5

View File

@ -7,6 +7,8 @@ snippet date
`strftime("%Y-%m-%d")`
snippet ddate
`strftime("%B %d, %Y")`
snippet diso
`strftime("%Y-%m-%dT%H:%M:%S")`
snippet time
`strftime("%H:%M")`
snippet datetime