This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 107983

Summary: highlighting of variables in batch scripts
Product: obsolete Reporter: Radim Roska <rroska>
Component: languagesAssignee: issues@obsolete <issues>
Status: NEW ---    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:

Description Radim Roska 2007-06-25 11:28:10 UTC
Product Version: NetBeans IDE Dev (Build 200706230000)

variables like %0, %1 which refer to script parameters should be highlighted. So should %variable% and
%%case_sensitive_variable be highlighted...

for %%a in (*) do call dostuff.bat %1 %%a

set _number=0
set _max=10
if %_number%==%_max%
...