aboutsummaryrefslogtreecommitdiff
path: root/files/.vim/UltiSnips/remind.snippets
blob: 055407a96c12ada07421356b5c59e9bcd819ec2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
snippet rem "new reminder" b
REM ${1:`date "+%d %b %Y"`} MSG ${2}%
endsnippet

snippet remt "new reminder with time" b
REM ${1:`date "+%d %b %Y"`} AT ${2:12:00} DURATION 1:00 MSG ${3}%
endsnippet

snippet %
%"${0:${VISUAL}}%"
endsnippet

priority 1

snippet date "insert date"
`date "+%d %b %Y"`
endsnippet