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 213995 - CSS code completion does not complete comment on enter like in PHP
Summary: CSS code completion does not complete comment on enter like in PHP
Status: NEW
Alias: None
Product: web
Classification: Unclassified
Component: CSS Editor (show other bugs)
Version: -S1S-
Hardware: PC Linux
: P2 normal (vote)
Assignee: Milutin Kristofic
URL:
Keywords:
Depends on:
Blocks: 235151
  Show dependency tree
 
Reported: 2012-06-11 15:35 UTC by BullfrogBlues
Modified: 2014-10-06 13:26 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 BullfrogBlues 2012-06-11 15:35:24 UTC
In PHP comments are completed on <enter>, e.g. (where | is the cursor)

There are two specific enhancements
-----------------------------------

1) Initial comment completion
-----------------------------

/**|<enter>

expected:

/**
 *|
 */

actual:

/**
|

2) Continuous comment completion
--------------------------------

/**
 * Comment which needs a new line|<enter>
 */

expected:

/**
 * Comment which needs a new line
 * |
 */


Comment on the above enhancements
---------------------------------

The above enhancements are how comments are completed in PHP files.