You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the VIM extension, we need to add a keybinding for every key input, do some stuff, then manually insert it into the active text editor. Despite inserting a character at the current position, it will hide the suggest/autocomplete window.
Problem
As you type and press a key that triggers an suggest window (e.g. .), regardless of the next character inserted via the active text editor API, it will close the suggest window.
We can manually trigger the suggest window following every insert via
But this results in the suggest window showing up even if there is nothing to suggest. Is there a way to trigger the suggest window only if there are actually suggestions?
The text was updated successfully, but these errors were encountered:
Update: vscode now has an editor.cursorStyle setting that allows a block value. The issue as written is still valid, since (AFAICS) there's no way to control it from the extensions API.
Context
For the VIM extension, we need to add a keybinding for every key input, do some stuff, then manually insert it into the active text editor. Despite inserting a character at the current position, it will hide the suggest/autocomplete window.
Problem
As you type and press a key that triggers an suggest window (e.g.
.
), regardless of the next character inserted via the active text editor API, it will close the suggest window.We can manually trigger the suggest window following every insert via
But this results in the suggest window showing up even if there is nothing to suggest. Is there a way to trigger the suggest window only if there are actually suggestions?
The text was updated successfully, but these errors were encountered: