-
Notifications
You must be signed in to change notification settings - Fork 57
bug(code-server): Inability to set object values in settings
#296
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
Comments
@matifali, could you take a look? |
From #357 (comment) L.S. I found the following bug. The settings = {
"yaml.customTags": [
"!reference sequence",
"!vault scalar",
"inputs sequence"
]
} FIX: To allow vscode setting to be set correctly, the type of the variable should be Please advice. |
It require some investigation, however as @phorcys420 noted and my analysis, the type of the
|
So I built the module locally and figured out what the variable type has to be; it must be Type must be: @phorcys420 comments? |
Hello, the same issue exist also for the module |
Discord Thread
The type of the
settings
variable ismap(string)
and therefore does not allow you to set settings likefiles.exclude
which takes in an object.You would want to set the value like this, but the type doesn't allow you to do so.
I think all that has to be done is set the variable's type to
map(any)
.The text was updated successfully, but these errors were encountered: