DefaultOptions.NonBlockingCompletionOptionId Field

Definition

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.

Applies to