Enable YAML suggestions by default#1305
Merged
philliphoff merged 1 commit intomasterfrom Sep 26, 2019
Merged
Conversation
bwateratmsft
approved these changes
Sep 26, 2019
|
For some reason this isn't working anymore in 0.9.0. I had to manually add the following to my config: "[yaml]": {
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
}
}When I typed editor.quickSuggestions, it filled in the object for me, and it was prefilled with strings: false, which I had to manually change to true. Another thing I thought of that might be worth noting: I'm using this with the |
Contributor
|
@philliphoff Any idea on this? |
Member
Author
|
@f5f89da508430f4596e8456da8eb1784 Do you see this issue *only * when using |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Enable YAML suggestions by default so that Docker Compose IntelliSense provided by this extension is displayed without requiring CTRL+SPACE. This is also what the YAML extension does.
Users can disable this by setting
[yaml].editorQuickSuggestions.stringstofalsein their settings.Resolves #243.