Reputation: 1239
This question is tough to search for as the '>' symbol seems to be ignored in Stack Overflow's search, so I apologize if it's been asked and answered before.
In Eclipse's package explorer view it will append a '>' symbol to the start of a file name if that file has been edited since it has last been synchronized with a repository. The problem with this is the '>' symbol is then taken into account when selecting files with the keyboard.
Say there's a file titled Main.java. If it hasn't been edited since synchronizing you can type 'Main' when the package explorer has focus and that file would get selected. However if the file has been edited you would have to type in '>Main' for it to get selected.
Does anybody know if this is a feature that can be disabled? I haven't found anything searching through Eclipse's menus, and I haven't been able to find anybody else mentioning this online.
Upvotes: 21
Views: 15600
Reputation: 2194
In eclipse goto preferences
Goto General -> Apperance -> Label Decorations -> Unckeck GIT
or SVN if you are using SVN. In my case i am using GIT.
Upvotes: 1
Reputation: 11607
Preferences Team > SVN > Label Decorations
. You can change the format (and thus the position) in Text Decorations
(e.g. "File": "{outgoing_flag} {name} {revision}") and set non-textual icons for outgoing changes in Icons Decorations
.
This is for Subversive team provider, Subclipse uses a different design. Maybe you will find the settings two times.
Upvotes: 18
Reputation: 9535
The selection of a leaf of your tree is the default behavior of the underlying Tree Widget which is rendered by your operating system. Since a native Tree doesn't know something about Decorators (the '>' is drawn by a decorator from your team provider) the text of a leaf contains the '>' character. To open a resource use the much more comfortable shortcut Ctrl+Shift+R
Upvotes: 2