changeset 247:2bab5f618dbc

Make indenting consistent with the rest of the plugin.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 05 May 2019 22:11:19 -0700
parents 97723c1818e0
children 57654e0dea1c
files autoload/gutentags/gtags_cscope.vim
diffstat 1 files changed, 66 insertions(+), 66 deletions(-) [+]
line wrap: on
line diff
--- a/autoload/gutentags/gtags_cscope.vim	Sun May 05 22:10:53 2019 -0700
+++ b/autoload/gutentags/gtags_cscope.vim	Sun May 05 22:11:19 2019 -0700
@@ -1,30 +1,30 @@
 " gtags_cscope module for Gutentags
 
 if !has('cscope')
-	throw "Can't enable the gtags-cscope module for Gutentags, this Vim has ".
-				\ "no support for cscope files."
+    throw "Can't enable the gtags-cscope module for Gutentags, "
+                \"this Vim has no support for cscope files."
 endif
 
 " Global Options {{{
 
 if !exists('g:gutentags_gtags_executable')
-	let g:gutentags_gtags_executable = 'gtags'
+    let g:gutentags_gtags_executable = 'gtags'
 endif
 
 if !exists('g:gutentags_gtags_dbpath')
-	let g:gutentags_gtags_dbpath = ''
+    let g:gutentags_gtags_dbpath = ''
 endif
 
 if !exists('g:gutentags_gtags_options_file')
-	let g:gutentags_gtags_options_file = '.gutgtags'
+    let g:gutentags_gtags_options_file = '.gutgtags'
 endif
 
 if !exists('g:gutentags_gtags_cscope_executable')
-	let g:gutentags_gtags_cscope_executable = 'gtags-cscope'
+    let g:gutentags_gtags_cscope_executable = 'gtags-cscope'
 endif
 
 if !exists('g:gutentags_auto_add_gtags_cscope')
-	let g:gutentags_auto_add_gtags_cscope = 1
+    let g:gutentags_auto_add_gtags_cscope = 1
 endif
 
 " }}}
@@ -34,73 +34,73 @@
 let s:added_db_files = {}
 
 function! s:add_db(db_file) abort
-	if filereadable(a:db_file)
-		call gutentags#trace(
-					\"Adding cscope DB file: " . a:db_file)
-		set nocscopeverbose
-		execute 'cs add ' . fnameescape(a:db_file)
-		set cscopeverbose
-		let s:added_db_files[a:db_file] = 1
-	else
-		call gutentags#trace(
-					\"Not adding cscope DB file because it doesn't " .
-					\"exist yet: " . a:db_file)
-	endif
+    if filereadable(a:db_file)
+        call gutentags#trace(
+                    \"Adding cscope DB file: " . a:db_file)
+        set nocscopeverbose
+        execute 'cs add ' . fnameescape(a:db_file)
+        set cscopeverbose
+        let s:added_db_files[a:db_file] = 1
+    else
+        call gutentags#trace(
+                    \"Not adding cscope DB file because it doesn't " .
+                    \"exist yet: " . a:db_file)
+    endif
 endfunction
 
 function! gutentags#gtags_cscope#init(project_root) abort
-	let l:db_path = gutentags#get_cachefile(
-				\ a:project_root, g:gutentags_gtags_dbpath )
-	let l:db_path = gutentags#stripslash(l:db_path)
-	let l:db_file = l:db_path . '/GTAGS'
-	let l:db_file = gutentags#normalizepath(l:db_file)
+    let l:db_path = gutentags#get_cachefile(
+                \a:project_root, g:gutentags_gtags_dbpath)
+    let l:db_path = gutentags#stripslash(l:db_path)
+    let l:db_file = l:db_path . '/GTAGS'
+    let l:db_file = gutentags#normalizepath(l:db_file)
 
-	if !isdirectory(l:db_path)
-		call mkdir(l:db_path, 'p')
-	endif
+    if !isdirectory(l:db_path)
+        call mkdir(l:db_path, 'p')
+    endif
 
-	let b:gutentags_files['gtags_cscope'] = l:db_file
+    let b:gutentags_files['gtags_cscope'] = l:db_file
 
-	execute 'set cscopeprg=' . fnameescape(g:gutentags_gtags_cscope_executable)
+    execute 'set cscopeprg=' . fnameescape(g:gutentags_gtags_cscope_executable)
 
-	" The combination of gtags-cscope, vim's cscope and global files is
-	" a bit flaky. Environment variables are safer than vim passing
-	" paths around and interpreting input correctly.
-	let $GTAGSDBPATH = l:db_path
-	let $GTAGSROOT = a:project_root
+    " The combination of gtags-cscope, vim's cscope and global files is
+    " a bit flaky. Environment variables are safer than vim passing
+    " paths around and interpreting input correctly.
+    let $GTAGSDBPATH = l:db_path
+    let $GTAGSROOT = a:project_root
 
-	if g:gutentags_auto_add_gtags_cscope && 
-				\!has_key(s:added_db_files, l:db_file)
-		let s:added_db_files[l:db_file] = 0
-		call s:add_db(l:db_file)
-	endif
+    if g:gutentags_auto_add_gtags_cscope && 
+                \!has_key(s:added_db_files, l:db_file)
+        let s:added_db_files[l:db_file] = 0
+        call s:add_db(l:db_file)
+    endif
 endfunction
 
 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')
+    " 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')
 
-	let l:proj_options_file = a:proj_dir . '/' . g:gutentags_gtags_options_file
+    let l:proj_options_file = a:proj_dir . '/' . g:gutentags_gtags_options_file
 
-	let l:cmd = ['"'.g:gutentags_gtags_executable.'"']
-	if filereadable(l:proj_options_file)
-		let l:proj_options = readfile(l:proj_options_file)
-		let l:cmd += l:proj_options
-	endif
-	let l:cmd += ['--incremental', '"'.l:db_path.'"']
+    let l:cmd = ['"'.g:gutentags_gtags_executable.'"']
+    if filereadable(l:proj_options_file)
+        let l:proj_options = readfile(l:proj_options_file)
+        let l:cmd += l:proj_options
+    endif
+    let l:cmd += ['--incremental', '"'.l:db_path.'"']
     let l:cmd = gutentags#make_args(l:cmd)
 
-	call gutentags#trace("Running: " . string(l:cmd))
-	call gutentags#trace("In:      " . getcwd())
-	if !g:gutentags_fake
-		let l:job_opts = gutentags#build_default_job_options('gtags_cscope')
-		let l:job = gutentags#start_job(l:cmd, l:job_opts)
+    call gutentags#trace("Running: " . string(l:cmd))
+    call gutentags#trace("In:      " . getcwd())
+    if !g:gutentags_fake
+        let l:job_opts = gutentags#build_default_job_options('gtags_cscope')
+        let l:job = gutentags#start_job(l:cmd, l:job_opts)
         call gutentags#add_job('gtags_cscope', a:tags_file, l:job)
-	else
-		call gutentags#trace("(fake... not actually running)")
-	endif
-	call gutentags#trace("")
+    else
+        call gutentags#trace("(fake... not actually running)")
+    endif
+    call gutentags#trace("")
 endfunction
 
 function! gutentags#gtags_cscope#on_job_exit(job, exit_val) abort
@@ -108,15 +108,15 @@
     let l:dbfile_path = gutentags#get_job_tags_file('gtags_cscope', l:job_idx)
     call gutentags#remove_job('gtags_cscope', l:job_idx)
 
-	if g:gutentags_auto_add_gtags_cscope
-		call s:add_db(l:dbfile_path)
-	endif
+    if g:gutentags_auto_add_gtags_cscope
+        call s:add_db(l:dbfile_path)
+    endif
 
-	if a:exit_val != 0
-	    call gutentags#warning(
-			\"gtags-cscope job failed, returned: ".
-			\string(a:exit_val))
-	endif
+    if a:exit_val != 0
+        call gutentags#warning(
+                    \"gtags-cscope job failed, returned: ".
+                    \string(a:exit_val))
+    endif
 endfunction
 
 " }}}