Mercurial > vim-gutentags
changeset 242:23ce1c1b359f
Fix bad merge of `update_scopedb.cmd`.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 12 Mar 2019 21:31:02 -0700 |
parents | ac312dc3c111 |
children | 050d0549ecf3 |
files | plat/win32/update_scopedb.cmd |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plat/win32/update_scopedb.cmd Tue Mar 12 18:56:54 2019 -0700 +++ b/plat/win32/update_scopedb.cmd Tue Mar 12 21:31:02 2019 -0700 @@ -10,6 +10,7 @@ set DB_FILE=cscope.out set FILE_LIST_CMD= set LOG_FILE= +set BUILD_INVERTED_INDEX=0 :ParseArgs if [%1]==[] goto :DoneParseArgs @@ -36,6 +37,12 @@ if [%1]==[-l] ( set LOG_FILE=%~2 shift + goto :LoopParseArgs +) +if [%1]==[-I] ( + set BUILD_INVERTED_INDEX=1 + goto :LoopParseArgs +) echo Invalid Argument: %1 goto :Usage @@ -100,5 +107,6 @@ echo -p [dir=]: The path to the project root echo -L [cmd=]: The file list command to run echo -l [log=]: The log file to output to +echo -I: Builds an inverted index echo.