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 200192 - Syntax highlighting: uniquely color function parameter variables
Summary: Syntax highlighting: uniquely color function parameter variables
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.1
Hardware: All All
: P3 normal with 1 vote (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-07-16 20:18 UTC by toxikman
Modified: 2012-04-24 15:24 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 toxikman 2011-07-16 20:18:55 UTC
I'd like to see a feature (similar to Eclipse PDT) where you can color function parameters and global variables a different color from local variables.

For example:

    function myFunction( $a, $b )  // << $a and $b could be yellow
    {
        global $myGlobal; // << $myGlobal could be orange
        $local = "this is a local string"; // << $local is the standard variable color
        $local .= $a; // << $a appears yellow here again
        $local .= $myGlobal; // << orange
    }