We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
settings
Discord Thread
The type of the settings variable is map(string) and therefore does not allow you to set settings like files.exclude which takes in an object.
map(string)
files.exclude
You would want to set the value like this, but the type doesn't allow you to do so.
settings = { "files.exclude" = { "**/.*": true }, "workbench.colorTheme" = "Default Dark Modern" }
I think all that has to be done is set the variable's type to map(any).
map(any)
The text was updated successfully, but these errors were encountered:
@matifali, could you take a look? it should be a relatively low effort fix, i just won't have time to look into it for a bit
Sorry, something went wrong.
No branches or pull requests
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: