views:

31

answers:

4

I find that the autocompletion capability with the programming editor is a mixed blessing. Sometimes it anticipates correctly, or, when multiple choices might come from what is already typed, it advances to the next logical point, and typing the next expected letter moves it in the right direction. Reaaly sweet when it works right.

However, it often creates the wrong key word and advances all the way to the end, forcing a backspacing process that certainly doesn't add to the coding efficiency. Is there any way to back space word-by-word, or return the cursor to the point from which it jumped forward? That would certainly help.

Thanks in advance for any help.

John Doner

A: 

To backspace word by word try [Ctrl] + [Backspace]

You can also use [Ctrl] + arrows, [Ctrl] + [Shift] + arrows to respectively move and select word by word

Utaal
A: 

Ctrl+Backspace

In most editors, it backspaces a logical word, using camelCase or under_score notation.

You can also use Ctrl+Left and Ctrl+Right to jump the cursor around a word a time.

Ben S
A: 

As Utaal mentioned, you can use Control+Backspace. Also, in most editors with autocomplete you can hit "escape" before autocomplete has actually selected an entry to cancel it altogether.

Russell Newquist
A: 

If the auto complete is implemented correctly, hitting the editors undo key should undo the errant auto complete.

jussij