Is there an Eclipse plug-in to mark code, as with a highlighter pen. Anyone know if this is possible?
相关问题
- Eclipse and Mylyn : how to disable grey files in t
- Installing Pydev for Eclipse throws error
- Error in Scala Compiler: java.lang.AssertionError:
- How to remove unused imports using Eclipse and not
- Assume/switch role in aws toolkit for eclipse 2.0
相关文章
- selenium+eclipse 打开网页时报错
- Call non-static methods on custom Unity Android Pl
- Eclipse failing to open
- Eclipse how can I indent C++ preprocessor macros
- Why is FindBugs ignoring my check for null?
- Eclipse cleanup - what are the “.index” files - ca
- Eclipse plugin to find out unused methods in a cla
- Spring NamespaceHandler issue when launching Maven
I don't know of any such plug-in - I also searched Eclipse marketplace and Google for that.
However, if you have some experience with Eclipse plug-in development, writing an Eclipse command that creates an annotation for the selected text in the current editor should not be too hard (at least for your own use).
I usually use
//TODO
. It gives a nice visual bookmark type thing which you can use to jump easily.You could mark the line you want to highlight with a bookmark and then set a background color to highlight the bookmark. You have to go in :
preferences -> General -> Editors -> Text Editors -> Annotations
and then set the Text as highlighted with your preferred color :