-
Notifications
You must be signed in to change notification settings - Fork 11
Description
In Notepad++ with plugins (and maybe, same in VS) there are several features allowing to code a really fast:
- Autocompletion just using "Arrow" buttons + "TAB".
I will explain, why it is faster than Ctrl + Arrow, Ctrl + Enter.
In second case:
- more buttons to press
In first case: - TAB is located next to left hand. So, you actually use 2 hands instead of one.
Can you please add such ability?
- There is unnecessary duplication of information.
See screen:
It would be cool to have an optional checkbox, allowing to see only the list of autocompletion keywords in the pop-up windows, allowing instantly select one of them with "Arrow", "TAB" button. Such window will disapper as soon as whitespace or "(" character is entered, or "ESC" button is pressed.
It is faster, because:
- List of phrases are much closer located to the eye view of command that is to be entered at the moment.
- In N++ plugin I'm using, the list of phrases are constantly re-arranged, dependent on which one phrase you are selected the last time.
Example:
When you enter "Print"
First time, you have:
PrintCenterText
PrintToChat
PrintToChatAll
in autocompletion drop-down list.
If you select "PrintToChatAll",
the next time, you printed "Print", you will have:
PrintToChatAll
PrintCenterText
PrintToChat
in your drop-down list.
And this is extremely faster, because the next time you just need to enter "Print"+"TAB"
Can this be somehow implemented, maybe partially, when you have enough time, or with my help. I studied C#, and I have a pretty good basic knowledge of it, so I could help, I think, VB.NET is not that much difficult, considering that I already know VB6.