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 @@ -46,6 +46,7 @@ The following settings are supported:
* `yaml.format.trailingComma`: Specify if trailing commas should be used in JSON-like segments of the YAML
* `yaml.validate`: Enable/disable validation feature
* `yaml.hover`: Enable/disable hover
* `yaml.hoverAnchor`: Enable/disable hover feature for anchors
* `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/json/)
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,11 @@
"default": true,
"description": "Enable/disable hover feature"
},
"yaml.hoverAnchor": {
"type": "boolean",
"default": true,
"description": "Enable/disable hover feature for anchors"
},
"yaml.completion": {
"type": "boolean",
"default": true,
Expand Down
Loading