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 - highlighting of variables in batch scripts
Summary: highlighting of variables in batch scripts
Status: NEW
Alias: None
Product: obsolete
Classification: Unclassified
Component: languages (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@obsolete
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-06-25 11:28 UTC by Radim Roska
Modified: 2007-06-25 11:28 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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%
...