Autocompletion don't replaces previous identificator
<a href="TestA.html" target="_top">TestA1</a>
Place cursor between _ and t, press ctrl+space, choose _blank, press Enter. Result:
<a href="TestA.html" target="_blanktop">TestA1</a>
Why not
<a href="TestA.html" target="_blank">TestA1</a>
?
请先登录再写评论。
Hi there,
>Why not
Use TAB instead of ENTER if you need to replace old value.
ENTER just inserts while TAB replaces.
just use
Tabinstead ofEnterfor choosing value from completion. This is the standard completion behavior:Enterinserts the text of the selected completion element, andTabreplaces the identifier under caret with the selected element. The keys can be swapped inSettings | Keymap(Editor Actions/Choose lookup Item ReplaceandEditor Actions/Choose lookup Itemactions)Andriy, Elena, thanks :)