4 * Copyright (c) 2009, David Fishburn
6 * This source code is released for free distribution under the terms of the
7 * GNU General Public License.
9 * This module contains functions for generating tags for DOS Batch language files.
15 #include "general.h" /* must always come first */
21 * FUNCTION DEFINITIONS
24 static void installDosBatchRegex (const langType language
)
26 addTagRegex (language
,
27 "^:([A-Za-z_0-9]+)", "\\1", "l,label,labels", NULL
);
28 addTagRegex (language
,
29 "set[ \t]+([A-Za-z_0-9]+)[ \t]*=", "\\1", "v,variable,variables", NULL
);
32 extern parserDefinition
* DosBatchParser ()
34 static const char *const extensions
[] = { "bat", "cmd", NULL
};
35 parserDefinition
* const def
= parserNew ("DosBatch");
36 def
->extensions
= extensions
;
37 def
->initialize
= installDosBatchRegex
;
42 /* vi:set tabstop=4 shiftwidth=4: */