DefaultOptions.NonBlockingCompletionOptionId Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Option that defines whether or not Editor should block waiting for computation of completion items.
When set to true
and user invoked gesture to commit a completion item, Editor will
either use the last computed set of completion items, or dismiss completion if no completion items were computed so far.
public: static initonly Microsoft::VisualStudio::Text::Editor::EditorOptionKey<bool> NonBlockingCompletionOptionId;
public static readonly Microsoft.VisualStudio.Text.Editor.EditorOptionKey<bool> NonBlockingCompletionOptionId;
staticval mutable NonBlockingCompletionOptionId : Microsoft.VisualStudio.Text.Editor.EditorOptionKey<bool>
Public Shared ReadOnly NonBlockingCompletionOptionId As EditorOptionKey(Of Boolean)
Field Value
Remarks
When set to true
, it takes precedence over ResponsiveCompletionOptionId and is equivalent to setting ResponsiveCompletionThresholdOptionId to true
and ResponsiveCompletionOptionId to 0
.