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 changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased
<!-- Add all new changes here. They will be moved under a version at release -->
* `FIX` Typos in a few error messages.
* `FIX` Incorrect inject-field message for extra table field in exact class
* `CHG` Rename configuration option `Lua.diagnostics.disableScheme` to `Lua.diagnostics.validScheme` and improve its description. Now it enables diagnostics for Lua files that use the specified scheme.
* `FIX` adds the `|lambda|` operator to the `Lua.runtime.nonstandardSymbol` configuration template, which allows the use of that option. Previously, support for it existed in the parser, but we could not actually use the option because it is not recognised in the configuration.
Expand Down
2 changes: 1 addition & 1 deletion locale/en-us/script.lua
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ CONFIG_MODIFY_FAIL_NO_WORKSPACE =
[[
Failed to modify settings:
* The current mode is single-file mode, server cannot create `.luarc.json` without workspace.
* The language client dose not support modifying settings from the server side.
* The language client does not support modifying settings from the server side.

Please modify following settings manually:
{}
Expand Down
2 changes: 1 addition & 1 deletion locale/pt-br/script.lua
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ CONFIG_MODIFY_FAIL_NO_WORKSPACE = -- TODO: need translate!
[[
Failed to modify settings:
* The current mode is single-file mode, server cannot create `.luarc.json` without workspace.
* The language client dose not support modifying settings from the server side.
* The language client does not support modifying settings from the server side.

Please modify following settings manually:
{}
Expand Down
2 changes: 1 addition & 1 deletion script/client.lua
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ local function tryModifyClientGlobal(finalChanges)
end
log.info('tryModifyClientGlobal', inspect(finalChanges))
if not m.getOption 'changeConfiguration' then
log.info('Client dose not support modifying config')
log.info('Client does not support modifying config')
return
end
local changes = {}
Expand Down
Loading