CodeActionRegistrationOptions

case class CodeActionRegistrationOptions(documentSelector: Opt[DocumentSelector], codeActionKinds: Opt[Vector[CodeActionKind]], resolveProvider: Opt[Boolean])

Registration options for a CodeActionRequest.

Value parameters:
codeActionKinds

CodeActionKinds that this server may return. The list of kinds may be generic, such as CodeActionKind.Refactor, or the server may list out every specific kind they provide.

documentSelector

A document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.

resolveProvider

The server provides support to resolve additional information for a code action. since 3.16.0

Companion:
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product