class Solargraph::LanguageServer::Message::Initialized

Public Instance Methods

process() click to toggle source
# File lib/solargraph/language_server/message/initialized.rb, line 6
def process
  # @todo Temporarily removed textDocument/codeAction
  host.register_capabilities %w[
    textDocument/completion
    textDocument/hover
    textDocument/signatureHelp
    textDocument/formatting
    textDocument/documentSymbol
    textDocument/definition
    textDocument/references
    textDocument/rename
    textDocument/prepareRename
    textDocument/foldingRange
    textDocument/documentHighlight
    workspace/symbol
  ]
end