Skip to content

lsp / org.pinelang.lsp.lsp.models / FoldingRangeClientCapabilities

FoldingRangeClientCapabilities

data class FoldingRangeClientCapabilities

Constructors

Name Summary
<init> FoldingRangeClientCapabilities(dynamicRegistration:Boolean?, rangeLimit:Int?, lineFoldingOnly:Boolean?)

Properties

Name Summary
dynamicRegistration Whether implementation supports dynamic registration for folding range providers. If this is set to true the client supports the new FoldingRangeRegistrationOptions return value for the corresponding server capability as well.val dynamicRegistration:Boolean?
lineFoldingOnly If set, the client signals that it only supports folding complete lines. If set, client will ignore specified startCharacter and endCharacter properties in a FoldingRange.val lineFoldingOnly:Boolean?
rangeLimit The maximum number of folding ranges that the client prefers to receive per document. The value serves as a hint, servers are free to follow the limit.val rangeLimit:Int?