package hover
- Alphabetic
- Public
- All
Type Members
-
case class
Hover(contents: Seq[String], range: Option[Range]) extends Product with Serializable
The result of a hover request.
-
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.
- case class HoverParams(textDocument: TextDocumentIdentifier, position: Position) extends TextDocumentPositionParams with Product with Serializable
Value Members
- object Hover extends Serializable
- object HoverConfigType extends ConfigType[HoverClientCapabilities, Boolean] with Product with Serializable
- object HoverRequestType extends RequestType[HoverParams, Hover] with Product with Serializable
-
object
MarkupKind extends Enumeration with Product with Serializable
Describes the content type that a client supports in various result literals like
Hover,ParameterInfoorCompletionItem.Describes the content type that a client supports in various result literals like
Hover,ParameterInfoorCompletionItem.Please note that
MarkupKindsmust not start with a$. This kinds are reserved for internal usage.