Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 333798

Summary: Add HTML proposals in phpDoc content assist
Product: z_Archived Reporter: Mauro Molinari <mauromol>
Component: PDTAssignee: PHP Core <php.core-inbox>
Status: NEW --- QA Contact:
Severity: enhancement    
Priority: P3    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows Vista   
Whiteboard:

Description Mauro Molinari CLA 2011-01-08 09:22:03 EST
If you hit Ctrl+Space in a phpDoc region, you don't get any HTML proposals.

If you do that in the Java editor for a JavaDoc region, you do.

For instance:

// Java editor

/**
 * | <= ctrl+space here: <a>, <b>, <blockquote>, etc. suggested
 */
public void test()
{}

// PHP edito

/**
 * | <= ctrl+space here: no default proposals
 */
public function test()
{}

It would be very useful to have such proposals in the PHP editor for phpDocs too.