How do I get it to work? Is it a problem with Vim's jobstart api?
let g:gutentags_project_info = []
call add(g:gutentags_project_info, {'type': 'rust', 'file': 'Cargo.toml'})
let g:gutentags_ctags_executable_rust = 'source /home/.vim/shims/gutentags.sh && ctags'
/home/.vim/shims/gutentags.sh
ctags() {
rusty-tags vi && mv rusty-tags.vi tags.temp
}
Never mind the error message below because it never even executes that function. Is it a bash problem with the context the cmd is being executed in?
gutentags: gutentags: ctags job failed, returned: 1
gutentags: ['mv: rename ./tags.temp to ./tags: No such file or directory', '']
How do I get it to work? Is it a problem with Vim's jobstart api?
/home/.vim/shims/gutentags.sh
Never mind the error message below because it never even executes that function. Is it a bash problem with the context the cmd is being executed in?
gutentags: gutentags: ctags job failed, returned: 1gutentags: ['mv: rename ./tags.temp to ./tags: No such file or directory', '']