ProposalFlags Enum

Definition

This enumeration supports a bitwise combination of its member values.

[System.Flags]
public enum ProposalFlags
[<System.Flags>]
type ProposalFlags = 
Public Enum ProposalFlags
Inheritance
ProposalFlags
Attributes

Fields

DisableInIntelliSense 32

Do not display proposal if IntelliSense is being displayed.

FormatAfterCommit 64

Format modified text after committing.

MoveCaretToEnd 16

Move the caret to the end of the last edit after applying the edit.

None 0
QueueProposalRequestOnCommit 2

If set, immediately queue a request for a new proposal if the user commits this proposal.

ShowCommitHighlight 4

Briefly show a highlight over the newly inserted/replaced text when the proposal is accepted.

SimulateBraceCompletion 8

The suggestion session will, if the proposal is accepted, simulate brace completion as if the user had typed the proposal (e.g. accepting "bar(" will result in "bar()" with the caret placed between the two parenthesis and the closing parenthesis being part of a brace completion session).

SingleTabToAccept 1

If set, accept the proposal with a single tab even if IntelliSense is up.

Applies to