dotfiles/nvim/.config/nvim/plugin/searchnotes.vim
2019-12-29 23:12:13 +01:00

8 lines
224 B
VimL

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