Sha256: 4ce6591c829609cb2fb657dbaab970caf1481404a120a0832e9ad591126d4e78
Contents?: true
Size: 509 Bytes
Versions: 12
Compression:
Stored size: 509 Bytes
Contents
module LanguageServer module Protocol module Constant # # 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
12 entries across 12 versions & 1 rubygems