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
Quick suggestions describe the feature of showing IntelliSense while you type words (precisely: type at word ends). This can be configured via editor.quickSuggestions. This setting has been extend to support showing quick suggestion as inline completions (instead of showing the full suggest widget). Please test that
editor.quickSuggestions.[strings|comments|other] now accept on, inline, off in addition to the true and false
think about the setting names/descriptions and if they makes sense to you
use inline and make sure the best matching completion shows while are typing
you can always show the suggest widget via ctrl+space
completions triggered by trigger characters, like . for TypeScript, still show the suggest widget
try this for different languages like TypeScript, JSON, and CSS
The text was updated successfully, but these errors were encountered:
Refs: #126375
Complexity: 3
Create Issue
Quick suggestions describe the feature of showing IntelliSense while you type words (precisely: type at word ends). This can be configured via
editor.quickSuggestions
. This setting has been extend to support showing quick suggestion as inline completions (instead of showing the full suggest widget). Please test thateditor.quickSuggestions.[strings|comments|other]
now accepton
,inline
,off
in addition to thetrue
andfalse
inline
and make sure the best matching completion shows while are typingctrl+space
.
for TypeScript, still show the suggest widgetThe text was updated successfully, but these errors were encountered: