enum

LSP::SignatureHelpTriggerKind

Inherits Enum < Comparable < Value < Object

How a signature help was triggered.

Constants

Invoked = 1

Signature help was invoked manually by the user or by a command.

TriggerCharacter = 2

Signature help was triggered by a trigger character.

ContentChange = 3

Signature help was triggered by the cursor moving or by the document content changing.

Instance methods

content_change?

Returns true if this enum value equals ContentChange

Source
invoked?

Returns true if this enum value equals Invoked

Source
trigger_character?

Returns true if this enum value equals TriggerCharacter

Source