Skip to content

Commit

Permalink
fix #539
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed Jun 24, 2021
1 parent 3f300fc commit ba02896
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"type": "lua",
"request": "attach",
"stopOnEntry": true,
"address": "127.0.0.1:11413",
"address": "127.0.0.1:11427",
"outputCapture": [
],
"sourceMaps": [
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# changelog

## 2.0.4
* `FIX` [#539](https://github.com/sumneko/lua-language-server/issues/539)
* `FIX` [#550](https://github.com/sumneko/lua-language-server/issues/550)

## 2.0.3
Expand Down
2 changes: 1 addition & 1 deletion script/core/completion.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ local function tryWord(ast, text, offset, triggerCharacter, results)
if not word then
if triggerCharacter == nil then
word = ''
start = offset
start = offset + 1
else
return nil
end
Expand Down

0 comments on commit ba02896

Please sign in to comment.