workspace

langoustine.lsp.requests.workspace
object workspace

Attributes

Source
requests.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
workspace.type

Members list

Type members

Classlikes

object applyEdit extends LSPRequest

A request sent from the server to the client to modified certain resources.

A request sent from the server to the client to modified certain resources.

Attributes

Source
requests.scala
Supertypes
class LSPRequest
class Object
trait Matchable
class Any
Self type
applyEdit.type
object codeLens

Attributes

Source
requests.scala
Supertypes
class Object
trait Matchable
class Any
Self type
codeLens.type
object configuration extends LSPRequest

The 'workspace/configuration' request is sent from the server to the client to fetch a certain configuration setting.

The 'workspace/configuration' request is sent from the server to the client to fetch a certain configuration setting.

This pull model replaces the old push model where the client signaled configuration change via an event. If the server still needs to react to configuration changes (since the server caches the result of workspace/configuration requests) the server should register for an empty configuration change event and empty the cache if such an event is received.

Attributes

Source
requests.scala
Supertypes
class LSPRequest
class Object
trait Matchable
class Any
Self type
object diagnostic extends LSPRequest

The workspace diagnostic request definition.

The workspace diagnostic request definition.

since 3.17.0

Attributes

Source
requests.scala
Supertypes
class LSPRequest
class Object
trait Matchable
class Any
Self type
diagnostic.type

The configuration change notification is sent from the client to the server when the client's configuration has changed. The notification contains the changed configuration as defined by the language client.

The configuration change notification is sent from the client to the server when the client's configuration has changed. The notification contains the changed configuration as defined by the language client.

Attributes

Source
requests.scala
Supertypes
class Object
trait Matchable
class Any
Self type

The watched files notification is sent from the client to the server when the client detects changes to file watched by the language client.

The watched files notification is sent from the client to the server when the client detects changes to file watched by the language client.

Attributes

Source
requests.scala
Supertypes
class Object
trait Matchable
class Any
Self type

The workspace/didChangeWorkspaceFolders notification is sent from the client to the server when the workspace folder configuration changes.

The workspace/didChangeWorkspaceFolders notification is sent from the client to the server when the workspace folder configuration changes.

Attributes

Source
requests.scala
Supertypes
class Object
trait Matchable
class Any
Self type

The did create files notification is sent from the client to the server when files were created from within the client.

The did create files notification is sent from the client to the server when files were created from within the client.

Attributes

Since

3.16.0

Source
requests.scala
Supertypes
class Object
trait Matchable
class Any
Self type

The will delete files request is sent from the client to the server before files are actually deleted as long as the deletion is triggered from within the client.

The will delete files request is sent from the client to the server before files are actually deleted as long as the deletion is triggered from within the client.

Attributes

Since

3.16.0

Source
requests.scala
Supertypes
class Object
trait Matchable
class Any
Self type

The did rename files notification is sent from the client to the server when files were renamed from within the client.

The did rename files notification is sent from the client to the server when files were renamed from within the client.

Attributes

Since

3.16.0

Source
requests.scala
Supertypes
class Object
trait Matchable
class Any
Self type
object executeCommand extends LSPRequest

A request send from the client to the server to execute a command. The request might return a workspace edit which the client will apply to the workspace.

A request send from the client to the server to execute a command. The request might return a workspace edit which the client will apply to the workspace.

Attributes

Source
requests.scala
Supertypes
class LSPRequest
class Object
trait Matchable
class Any
Self type
object inlayHint

Attributes

Source
requests.scala
Supertypes
class Object
trait Matchable
class Any
Self type
inlayHint.type
object inlineValue

Attributes

Source
requests.scala
Supertypes
class Object
trait Matchable
class Any
Self type

Attributes

Source
requests.scala
Supertypes
class Object
trait Matchable
class Any
Self type
object symbol extends LSPRequest

A request to list project-wide symbols matching the query string given by the [[WorkspaceSymbolParams]]. The response is of type [[SymbolInformation SymbolInformation[]]] or a Thenable that resolves to such.

A request to list project-wide symbols matching the query string given by the [[WorkspaceSymbolParams]]. The response is of type [[SymbolInformation SymbolInformation[]]] or a Thenable that resolves to such.

since 3.17.0 - support for WorkspaceSymbol in the returned data. Clients need to advertise support for WorkspaceSymbols via the client capability workspace.symbol.resolveSupport.

Attributes

Source
requests.scala
Supertypes
class LSPRequest
class Object
trait Matchable
class Any
Self type
symbol.type
object willCreateFiles extends LSPRequest

The will create files request is sent from the client to the server before files are actually created as long as the creation is triggered from within the client.

The will create files request is sent from the client to the server before files are actually created as long as the creation is triggered from within the client.

The request can return a WorkspaceEdit which will be applied to workspace before the files are created. Hence the WorkspaceEdit can not manipulate the content of the file to be created.

since 3.16.0

Attributes

Source
requests.scala
Supertypes
class LSPRequest
class Object
trait Matchable
class Any
Self type
object willDeleteFiles extends LSPRequest

The did delete files notification is sent from the client to the server when files were deleted from within the client.

The did delete files notification is sent from the client to the server when files were deleted from within the client.

since 3.16.0

Attributes

Source
requests.scala
Supertypes
class LSPRequest
class Object
trait Matchable
class Any
Self type
object willRenameFiles extends LSPRequest

The will rename files request is sent from the client to the server before files are actually renamed as long as the rename is triggered from within the client.

The will rename files request is sent from the client to the server before files are actually renamed as long as the rename is triggered from within the client.

since 3.16.0

Attributes

Source
requests.scala
Supertypes
class LSPRequest
class Object
trait Matchable
class Any
Self type
object workspaceFolders extends LSPRequest

The workspace/workspaceFolders is sent from the server to the client to fetch the open workspace folders.

The workspace/workspaceFolders is sent from the server to the client to fetch the open workspace folders.

Attributes

Source
requests.scala
Supertypes
class LSPRequest
class Object
trait Matchable
class Any
Self type