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 226217

Summary: Content Assist: Camel Case Matches
Product: php Reporter: BullfrogBlues
Component: EditorAssignee: Ondrej Brejla <obrejla>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 7.2.1   
Hardware: PC   
OS: Linux   
Issue Type: ENHANCEMENT Exception Reporter:
Attachments: Screenshot

Description BullfrogBlues 2013-02-16 23:40:23 UTC
Content Assist support for camel case matches when entering code, which displays Content Assist options based on an element's initials.

EXAMPLE 1
---------

    $camelCaseVariable1 = 1;
    $camelCaseVariable2 = 2;

    $caC|<Ctrl><Space>

EXPECTED

Code assist for both $camelCaseVariable1 and $camelCaseVariable2.

EXAMPLE 2
---------

    class Person {
        protected $personCount1;
        protected $personCount2;

        public function setPersonCount($count)
        {
            $this->pC|<Ctrl><Space>
        }
    }

EXPECTED 

Code assist for both properties $personCount1 and $personCount2.
Comment 2 Ondrej Brejla 2013-02-17 09:00:12 UTC
I definitely plan it, but it's not feasible in the current index infrastructure. It has to be rewritten. Thanks!