Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 328618 - Add camel case code completion for variables and methods
Summary: Add camel case code completion for variables and methods
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: PDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows 7
: P3 enhancement with 1 vote (vote)
Target Milestone: ---   Edit
Assignee: PHP Core CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-10-25 11:03 EDT by Mauro Molinari CLA
Modified: 2020-05-14 10:17 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Mauro Molinari CLA 2010-10-25 11:03:55 EDT
Right now, camel case code completion works for class names but does not work for variable names and method names.

For instance:

$myVarName = 'aaa';
echo $myVN|<= Ctrl+space: I would expect $myVarName to be suggested/completed

Another example

$d = new DateTime();
$d->gT|<= Ctrl+space: I would expect getTimezone() to be suggested/completed