refacotred and split

This commit is contained in:
2026-02-25 15:32:05 +01:00
parent d4ad71543d
commit caf21ab060
10 changed files with 207 additions and 157 deletions

View File

@@ -0,0 +1,19 @@
" Link completion {{{1
set omnifunc=denote#completion#get
" Go to file command |gf| adjustments {{{1
" This resolves denote links. The function has access to the variable v:fname,
" which corresponds to the filename under the cursor.
function s:DenoteGotoFile()
return v:fname !~ "^denote:"
\ ? v:fname
\ : denote#meta#fileFromNoteId(v:fname[7:]) ?? v:fname
endfunction
" Denote links are of the form 'denote:<note id>'; we require the column.
setlocal isfname+=:
" Set the function to resolve the filename under the cursor (see |gf|).
setlocal includeexpr=s:DenoteGotoFile()
" Back references command {{{1
command! DenoteBackReferences :call denote#loclist#references(denote#meta#noteIdFromFile(expand("%:t")))