Sha256: 44d37dfd583e36c4cbc4eb7264b186446f5a7571f2cf6bf51456037bb1f993ee
Contents?: true
Size: 898 Bytes
Versions: 102
Compression:
Stored size: 898 Bytes
Contents
module LanguageServer module Protocol module Constant # # A type indicating how positions are encoded, # specifically what column offsets mean. # A set of predefined position encoding kinds. # module PositionEncodingKind # # Character offsets count UTF-8 code units (e.g bytes). # UTF8 = 'utf-8' # # Character offsets count UTF-16 code units. # # This is the default and must always be supported # by servers # UTF16 = 'utf-16' # # Character offsets count UTF-32 code units. # # Implementation note: these are the same as Unicode code points, # so this `PositionEncodingKind` may also be used for an # encoding-agnostic representation of character offsets. # UTF32 = 'utf-32' end end end end
Version data entries
102 entries across 102 versions & 13 rubygems