diff --git a/README.md b/README.md index 8ef64691..6bc6d46f 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ The following settings are supported: * `yaml.validate`: Enable/disable validation feature * `yaml.hover`: Enable/disable hover * `yaml.hoverAnchor`: Enable/disable hover feature for anchors +* `yaml.hoverSchemaSource`: Enable/disable showing the schema source in hover tooltips * `yaml.completion`: Enable/disable autocompletion * `yaml.schemas`: Helps you associate schemas with files in a glob pattern * `yaml.schemaStore.enable`: When set to true, the YAML language server will pull in all available schemas from [JSON Schema Store](http://schemastore.org/) diff --git a/package.json b/package.json index 88044d61..218598f3 100644 --- a/package.json +++ b/package.json @@ -269,6 +269,11 @@ "type": "boolean", "default": "true", "description": "Suggest additional extensions based on YAML usage." + }, + "yaml.hoverSchemaSource": { + "type": "boolean", + "default": "true", + "description": "Enable/disable showing the schema source in hover tooltips" } } },