vim-notes icon indicating copy to clipboard operation
vim-notes copied to clipboard

Changing g:notes_directories during Vim session doesn't change directories

Open jsit opened this issue 8 years ago • 1 comments

In my .vimrc I have this:

let notes_dir = '~/ownCloud/vim-notes'
silent execute '!mkdir ' . notes_dir . ' > /dev/null 2>&1'
silent execute '!mkdir ' . notes_dir . '/.vim-notes > /dev/null 2>&1'
let g:notes_directories = [notes_dir]
let g:notes_tagsindex = notes_dir . '/.vim-notes/tags.txt'
let g:notes_indexfile = notes_dir . '/.vim-notes/index.pickle'

It was my hope that I could turn this into a function so that I can change what notes_dir is at any time during a Vim session and enter a different notes "Project", with different notes, tags, index, etc.

However, when setting g:notes_directories and the other index options to different directories and running :RecentNotes, :ShowTaggedNotes, or :IndexTaggedNotes, vim-notes still operates on the previous directory that was defined.

jsit avatar Apr 06 '16 13:04 jsit

I suppose vim-notes wasn't really built for this; if there were a cache-clearing function, I could just put that inside my .vimrc, but I can't seem to find the right one in notes.vim.

jsit avatar Apr 06 '16 14:04 jsit