Packages

package hover

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class Hover(contents: Seq[String], range: Option[Range]) extends Product with Serializable

    The result of a hover request.

  2. case class HoverClientCapabilities(dynamicRegistration: Option[Boolean], contentFormat: Seq[MarkupKind]) extends Product with Serializable

    The hover request is sent from the client to the server to request hover information at a given text document position.

    The hover request is sent from the client to the server to request hover information at a given text document position.

    dynamicRegistration

    : Whether hover supports dynamic registration

    contentFormat

    : Client supports the follow content formats for the content property. The order describes the preferred format of the client.

  3. case class HoverParams(textDocument: TextDocumentIdentifier, position: Position) extends TextDocumentPositionParams with Product with Serializable

Value Members

  1. object Hover extends Serializable
  2. object HoverConfigType extends ConfigType[HoverClientCapabilities, Boolean] with Product with Serializable
  3. object HoverRequestType extends RequestType[HoverParams, Hover] with Product with Serializable
  4. object MarkupKind extends Enumeration with Product with Serializable

    Describes the content type that a client supports in various result literals like Hover, ParameterInfo or CompletionItem.

    Describes the content type that a client supports in various result literals like Hover, ParameterInfo or CompletionItem.

    Please note that MarkupKinds must not start with a $. This kinds are reserved for internal usage.

Ungrouped