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 225830 - More intelligent class/interface name completion
Summary: More intelligent class/interface name completion
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.4
Hardware: All All
: P3 normal (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-07 11:56 UTC by yargray
Modified: 2013-02-07 11:56 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 yargray 2013-02-07 11:56:24 UTC
Very very useful things for a large project:

// Camel case abbreviation:

class MySuperVeryLongNamedClass {}
class MySuperVaryLongNamedClass {}

new MSV[ctrl+space]
            |
            V
+---------------------------+
| MySuperVeryLongNamedClass
| MySuperVaryLongNamedClass
+---------------------------+

// and like this:

new msv[ctrl+space]
            |
            V
+---------------------------+
| MySuperVeryLongNamedClass
| MySuperVaryLongNamedClass
+---------------------------+

// and like this:

new MySupVe[ctrl+space]
                |
                V
+---------------------------+
| MySuperVeryLongNamedClass
+---------------------------+

==================================

// Partial name matching

class MySuperVeryLongNamedClass {}
class OtherVeryLongNamedClass {}

new LongNamed[ctrl+space]
                  |
                  V
+---------------------------+
| MySuperVeryLongNamedClass
| OtherVeryLongNamedClass
+---------------------------+