Skip to content

Commit

Permalink
Update note-tag-autocompleting gubbins.
Browse files Browse the repository at this point in the history
Update note-tag-autocompleting gubbins to use "nt", a Go rewrite of the
"bin/notes" script (see <https://github.com/damiendart/nt>).
  • Loading branch information
damiendart committed Oct 29, 2023
1 parent f735198 commit 9d615c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .vim/after/ftplugin/markdown.vim
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function! CompleteTags(findStart, base) abort
endif

let l:results = []
let l:tags = split(system('notes tags'))
let l:tags = split(system('nt tags'))

for l:tag in l:tags
if l:tag =~ '^' . a:base
Expand Down

0 comments on commit 9d615c6

Please sign in to comment.