Sudhir
Sudhir

Reputation: 533

is there any eclipse plugin available for writing a memo on any line of code?

Doe anybody know of an eclipse plugin, which can be used to insert short text (in the form of memo) to remember what that line of code does or a block of code does to help me understand the existing code better and i can also refer it back later on.

Just like "Task" can be added on a line of code, although i can use "tasks" for this purpose, but that is not very convenient and intuitive.

Upvotes: 1

Views: 207

Answers (2)

Chris Gerken
Chris Gerken

Reputation: 16392

The closest thing I can think of is bookmark support. There is native bookmark support in Eclipse and also several other vendors supply more function.

I'm assuming that there's a very good reason that you don't want to or can't modify the code.

Upvotes: 1

Oak
Oak

Reputation: 26858

If you want to add a short text to "remember what that line of code does or a block of code does to help me understand the existing code better", use comments. That's what they're for, and practically every formal language in the world has them.

If you want the ability to quickly jump to an arbitrary point in the code, using bookmarks is a convenient option - right click the bar immediately left of the text and choose to add a bookmark. You can then easily jump between bookmarks with the "bookmark view", which you can enable from the Window -> Show View menu.

Upvotes: 2

Related Questions