Split out plugin loading into individual modules

This commit is contained in:
Marty Oehme 2019-11-21 17:21:53 +01:00
parent faf4739711
commit 763130d6b2
12 changed files with 343 additions and 418 deletions

View file

@ -0,0 +1,8 @@
function! SearchNotes()
let l:curpath=getcwd()
:execute(":cd " . g:wiki_root)
let l:texttofind=input("Search in Notes: ")
:execute(":CtrlSF " . l:texttofind)
:CtrlSFFocus
:execute(":cd " . l:curpath)
endfunction