added vimwiki binds!
This commit is contained in:
Executable
+19
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/python
|
||||
import sys
|
||||
import datetime
|
||||
|
||||
template = """# {date}
|
||||
|
||||
## Daily checklist
|
||||
|
||||
* [ ]
|
||||
* [ ]
|
||||
|
||||
## Todo
|
||||
|
||||
## Notes"""
|
||||
|
||||
date = (datetime.date.today() if len(sys.argv) < 2
|
||||
# Expecting filename in YYYY-MM-DD.foo format
|
||||
else sys.argv[1].rsplit(".", 1)[0])
|
||||
print(template.format(date=date))
|
||||
Reference in New Issue
Block a user