Sha256: a5d6403feb7568b1cf91c533beee696af32ee07aa9536d28cc350b533253f584
Contents?: true
Size: 509 Bytes
Versions: 108
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
108 entries across 108 versions & 13 rubygems