You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let id =s:dbs[a:dir]['id']
let cscope_files =s:cscope_vim_dir."/".id."_inc.files"let cscope_db =s:cscope_vim_dir.'/'.id.'_inc.db'if ! filereadable(cscope_files) ||a:initlet cscope_files =s:cscope_vim_dir."/".id.".files"let cscope_db =s:cscope_vim_dir.'/'.id.'.db'if ! filereadable(cscope_files)
letfiles=<SID>ListFiles(a:dir)
callwritefile(files, cscope_files)
endifendif
So if x.files exist, the update will based on it, however, in some cases the there will be changes in file names and number of files, and path of files... so, obviously the x.files needs to be updated also everytime the databse is being updated to reliably update database.
The text was updated successfully, but these errors were encountered:
So if
x.files
exist, the update will based on it, however, in some cases the there will be changes in file names and number of files, and path of files... so, obviously thex.files
needs to be updated also everytime the databse is being updated to reliably update database.The text was updated successfully, but these errors were encountered: