GoClipse / goclipse

Eclipse IDE for the Go programming language:
http://goclipse.github.io/
Eclipse Public License 1.0
840 stars 287 forks source link

Highlighting all occurrences of selected symbol #70

Open baconalot opened 10 years ago

baconalot commented 10 years ago

It would be really nice to have all occurrences of a selected symbol highlighted in the current editor. Pydev again: untitled It really helps you find the declaration of a symbol.

vitoorz commented 10 years ago

vote!!

ryanmurf commented 9 years ago

vote

kellyellis commented 9 years ago

vote :3

rillig commented 9 years ago

+1

This is probably related to #111, since the editor needs to know about the structure of the source code. As a side node, there is already the autocomplete feature, using an external program, so maybe the same idea can be used for finding other references in code.

10liuguang01 commented 8 years ago

vote

esenac commented 8 years ago

vote

shaneossmrtspaces commented 8 years ago

vote

rsippl commented 8 years ago

+1

bogdanpredescu commented 8 years ago

+1

P.S. I thought this is a basic feature of any decent editor.

bruno-medeiros commented 8 years ago

P.S. I thought this is a basic feature of any decent editor.

A basic feature? Well, if its an approximate Highlight Occurrences using textual search - which is not 100% accurate, yeah, that is probably common. But having semantically accurate Highlight Occurences, that is not that common in editors.

That said, the guru tool does support a find-all-references functionality, it seems like that could be used to implement this.