I recently switched from Java and Eclipse IDE development to C # .NET and VisualStudio 2010. What I really missed is the Alt + / Eclipse shortcut to complete the word. I am NOT saying that IntelliSense uses autocomplete. I want to say that a text editor should finish writing words that already exist somewhere in the document, but will not be displayed in IntelliSense, for example. string literals.
In Notepad ++, this is the shortcut Ctrl + Enter . In Eclipse, this is the aforementioned Alt + /
Can VS2010 do the same? If not by default, can someone point me to a decent VB macro that I could connect to VS2010 to do this?
Thanks.
EDIT
Note that there is a difference between completing CODE (that is, that in most IDEs / smart editors it is done using Ctrl + Space) and simply ending WORD (which I'm searching for). Word completion does not try to analyze the current context or guess which type / method you could after. Everything that he does is trying to complete the work that you started typing by looking at the location of the cursor and looking for similar words that already appear in the current document.
eclipse visual-studio keyboard-shortcuts
Peter Perháč
source share