-
Notifications
You must be signed in to change notification settings - Fork 223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug on auto-completion: default value is inserted just after semi-colon (instead of one space after) #281
Comments
Thanks for your analysis and pointed line! what do you think about? |
Yep, looks like most likely the spaces on 719, 722, 732, 735 need to be removed |
Yes, this would be a nice way to fix! The other way is to add a Which way do you prefer? |
@JPinkney Tell me the way that you prefer, and then, I'm ready to submit a PR. |
I think try the second way:
and then if that doesn't work out try the first way |
Ok, I will do so. |
I just submitted the PR: I tested on my vscode, it works as expected for me! Can you review the PR? |
…ce-folders Handle workspace folders better
Say that I have this json schema:
If I use auto-completion in my YAML file, typing
pipeline
, then press<TAB>
key, I get this entry in my YAML file:pipeline.id:main
The expected generated YAML entry should be:
pipeline.id: main
Could you fix this little bug?
The text was updated successfully, but these errors were encountered: