Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
},
Expand Down
Loading