I want to achieve the following:
- the editor does not select any suggestions (but it shows so I can select with arrow keys), this is achieved by “editor.suggest.selectionMode”: “never”;
- when I type (exact) prefix for snippets I can tab complete it without choose it with arrow keys, this is achieved by “editor.tabCompletion”: “onlySnippets”;
- I want that two behaviors able to nest so I make sure “editor.suggest.snippetsPreventQuickSuggestions”: false.
most of the time those works fine but when i tried to tab complete snippets within tab completed snippet, I can’t tab complete it unless the placeholder is $0. When I reach a placeholder, whatever I type is highlighted and when I type prefix and tab I go to next placeholder instead of tab complete that…. In this case I need to manually type ESC to escape the highlights..
Any fix to this?