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 - Content Assist: Camel Case Matches
Summary: Content Assist: Camel Case Matches
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.2.1
Hardware: PC Linux
: P3 normal with 1 vote (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-16 23:40 UTC by BullfrogBlues
Modified: 2013-02-17 09:00 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments
Screenshot (16.76 KB, image/png)
2013-02-16 23:41 UTC, BullfrogBlues
Details

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