Reputation: 101742
Sorry about unclear title, i'm new in Java and Eclipse. Here is my problem I have been using Visual Studio
for a long time, and in Visual studio, assume i have a variable named sampleText
, when i type "samp"
or something like that intellisense shows up and when i press TAB
it write sampleText, but to do the same thing in ecplise i have to press Enter
, and it's not so cool,i want to change this option, i mean when i press TAB
i want it to write selected value. How can i do that ?
Upvotes: 0
Views: 99
Reputation: 595
It's not possible to change that behavior. I believe it is standard behavior in SWT to select items in lists with ENTER.
As a side note. You can select Visual Studio key bindings in
Window -> Preferences -> General -> Keys
Change Scheme to Microsoft Visual Studio.
It won't help you with your current problem but it might help you transition to Eclipse.
Upvotes: 2