class LSProtocol::WorkspaceSymbolParams

Overview

The parameters of a WorkspaceSymbolRequest.

Included Modules

Defined in:

lsprotocol/types.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(query : String | Nil, partial_result_token : ProgressToken | Nil = nil, work_done_token : ProgressToken | Nil = nil) #

[View source]

Instance Method Detail

def partial_result_token : ProgressToken | Nil #

[View source]
def query : String #

A query string to filter symbols by. Clients may send an empty string here to request all symbols.

The #query-parameter should be interpreted in a relaxed way as editors will apply their own highlighting and scoring on the results. A good rule of thumb is to match case-insensitive and to simply check that the characters of query appear in their order in a candidate symbol. Servers shouldn't use prefix, substring, or similar strict matching.


[View source]
def work_done_token : ProgressToken | Nil #

[View source]