Bugs item #1546235, was opened at 2006-08-24 15:26
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=1546235&group_id=44253
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Definitions (source editor)
Group: 2: Annoying
Status: Open
Resolution: None
Priority: 5
Submitted By: Dan Smith (dlsmith)
Assigned to: Nobody/Anonymous (nobody)
Summary: Broken automatic comment bracketing
Initial Comment:
The automatic multi-line commenting behavior is messed up when I
put text on the first line. For example, the following (pipe is the
cursor):
/** |
Becomes this after hitting enter:
/**
* |
*/
But this:
/** Some text|
Becomes this with an enter:
/** Some text
*/|
Here, the cursor appears *after* the end-of-comment token, and I
have to manipulate the cursor to get back inside the comment.
Worse, breaking the first line:
/** My |comment */
rearranges the text:
/** My
*/|comment */
The word "comment" here is no longer inside of the comment.
The logic seems to be messed up somewhere.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=1546235&group_id=44253
|