Sha256: 0cca62114ed9e201fbb8ac46d9b5719405b9e60acedc1f05756d731ac0ca5f55
Contents?: true
Size: 510 Bytes
Versions: 7
Compression:
Stored size: 510 Bytes
Contents
module LanguageServer module Protocol module Constants # # Represents reasons why a text document is saved. # module TextDocumentSaveReason # # Manually triggered, e.g. by the user pressing save, by starting debugging, # or by an API call. # MANUAL = 1 # # Automatic after a delay. # AFTER_DELAY = 2 # # When the editor lost focus. # FOCUS_OUT = 3 end end end end
Version data entries
7 entries across 7 versions & 2 rubygems