TextDocumentItem

langoustine.lsp.structures.TextDocumentItem
See theTextDocumentItem companion object
case class TextDocumentItem(uri: DocumentUri, languageId: String, version: Int, text: String)

An item to transfer a text document from the client to the server.

Value parameters

languageId

The text document's language identifier.

text

The content of the opened text document.

uri

The text document's uri.

version

The version number of this document (it will increase after each change, including undo/redo).

Attributes

Companion
object
Source
structures.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product