Skip to content

Commit

Permalink
Revert "fix #539"
Browse files Browse the repository at this point in the history
This reverts commit ba02896.
  • Loading branch information
sumneko committed Jun 24, 2021
1 parent ba02896 commit 5fb44f0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 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:11427",
"address": "127.0.0.1:11413",
"outputCapture": [
],
"sourceMaps": [
Expand Down
1 change: 0 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# 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 + 1
start = offset
else
return nil
end
Expand Down

0 comments on commit 5fb44f0

Please sign in to comment.