Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error of quitting in the middle of gtags generating (issue 319). #359

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions autoload/gutentags/gtags_cscope.vim
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,21 @@ function! gutentags#gtags_cscope#generate(proj_dir, tags_file, gen_opts) abort
" gtags doesn't honour GTAGSDBPATH and GTAGSROOT, so PWD and dbpath
" have to be set
let l:db_path = fnamemodify(a:tags_file, ':p:h')

" In order to prevent errors caused by quitting in the middle of gtag
" generation(because when we exit prematurely, no information has been
" written to the gtags file, and the file size is 0. If we use the
" `gtags --incremental path` command at this time, the error
" "GTAGS seems to be corrupted" will be reported.), we need to
" automatically delete empty gtags files.
let files = split(globpath(l:db_path, '*'), '\n')
for file in files
let file_size = getfsize(file)
if file_size == 0
try | call delete(file) | endtry
endif
endfor

let l:cmd += ['--incremental', '"'.l:db_path.'"']

let l:cmd = gutentags#make_args(l:cmd)
Expand Down