Bug 171024 - [syntax coloring] Inline tags which are not link should also have specific syntax coloring
Summary: [syntax coloring] Inline tags which are not link should also have specific sy...
Status: ASSIGNED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Text (show other bugs)
Version: 3.3   Edit
Hardware: PC Windows XP
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-Text-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-01-19 05:22 EST by Frederic Fusier CLA
Modified: 2007-01-19 05:25 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Frederic Fusier CLA 2007-01-19 05:22:02 EST
Tags in javadoc comments usually have their own syntax coloring. Currently user can set specific colors for 'Tags' and 'Link'.

I think it misses also an 'Inline' category for other possible inline tags as shown in following test case:
public class Test {
	/**
	 * {@docRoot}
	 * {@inheritDoc}
	 * {@code}
	 * {@literal}
	 */
	public void method() {}
}

Currently these tags are shown in the same color as text in javadoc comment and make them hard to identify quickly.

The other possibility would be to rename category 'Link' as 'Inline' and include all inline tags in it...