blob: 191f4864aa41e47fab7510f9fb2a599d4b59ceeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
finish
command! NoteutilToday call noteutil#open(
\ 'journal --date today')
command! NoteutilTodayWeekly call noteutil#open(
\ 'journal --date today --period weekly')
command! NoteutilYesterdayWeekly call noteutil#open(
\ 'journal --date yesterday --period weekly')
command! NoteutilBacklinks call noteutil#backlinks({'jump': v:true})
autocmd FileType markdown setlocal omnifunc=noteutil#complete
|