Mercurial > vim-gutentags
comparison plugin/gutentags.vim @ 26:8bcc9da32f7c
Merge pull request #3 from mortonfox/master
Fix for gutentags#statusline() with no args.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 02 Sep 2014 16:15:10 -0700 |
parents | a20588c2c020 |
children | 173f055bde34 |
comparison
equal
deleted
inserted
replaced
24:bab5f37faa1e | 26:8bcc9da32f7c |
---|---|
467 return '' | 467 return '' |
468 endif | 468 endif |
469 | 469 |
470 " Figure out what the user is customizing. | 470 " Figure out what the user is customizing. |
471 let l:gen_msg = 'TAGS' | 471 let l:gen_msg = 'TAGS' |
472 if a:0 >= 0 | 472 if a:0 > 0 |
473 let l:gen_msg = a:1 | 473 let l:gen_msg = a:1 |
474 endif | 474 endif |
475 | 475 |
476 " To make this function as fast as possible, we first check whether the | 476 " To make this function as fast as possible, we first check whether the |
477 " current buffer's tags file is 'maybe' being generated. This provides a | 477 " current buffer's tags file is 'maybe' being generated. This provides a |