Skip to content

Commit

Permalink
Use .exclude for the exclude file extension.
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Fowler committed Apr 24, 2012
1 parent 8005b98 commit 04506d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/xolox/easytags.vim
Expand Up @@ -159,7 +159,7 @@ endfunction
function! s:prep_cmdline(cfile, tagsfile, firstrun, arguments, context) " {{{3
let program = xolox#misc#option#get('easytags_cmd')
let cmdline = [program, '--fields=+l', '--c-kinds=+p', '--c++-kinds=+p']
let excludefile = a:tagsfile . '.excluded'
let excludefile = a:tagsfile . '.exclude'
if filereadable(excludefile)
call add(cmdline, '--exclude=@' . xolox#misc#escape#shell(excludefile))
endif
Expand Down

0 comments on commit 04506d1

Please sign in to comment.