Macro languageserver_types::lsp_request[][src]

macro_rules! lsp_request {
    ("initialize") => { ... };
    ("shutdown") => { ... };
    ("window/showMessageRequest") => { ... };
    ("client/registerCapability") => { ... };
    ("client/unregisterCapability") => { ... };
    ("workspace/symbol") => { ... };
    ("workspace/executeCommand") => { ... };
    ("textDocument/willSaveWaitUntil") => { ... };
    ("textDocument/completion") => { ... };
    ("completionItem/resolve") => { ... };
    ("textDocument/hover") => { ... };
    ("textDocument/signatureHelp") => { ... };
    ("textDocument/definition") => { ... };
    ("textDocument/references") => { ... };
    ("textDocument/documentHighlight") => { ... };
    ("textDocument/documentSymbol") => { ... };
    ("textDocument/codeAction") => { ... };
    ("textDocument/codeLens") => { ... };
    ("codeLens/resolve") => { ... };
    ("textDocument/documentLink") => { ... };
    ("documentLink/resolve") => { ... };
    ("textDocument/applyEdit") => { ... };
    ("textDocument/rangeFormatting") => { ... };
    ("textDocument/onTypeFormatting") => { ... };
    ("textDocument/formatting") => { ... };
    ("textDocument/rename") => { ... };
}