Skip to content

Commit

Permalink
fix #1493
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed Sep 6, 2022
1 parent e6443a0 commit 436e23f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* `CHG` `document-symbol`: redesigned to better support for `Sticky Scroll` feature of VSCode
* `FIX` `diagnostics.workspaceDelay` can not prevent first workspace diagnostic
* `FIX` [#1476](https://github.com/sumneko/lua-language-server/issues/1476)
* `FIX` [#1493](https://github.com/sumneko/lua-language-server/issues/1493)

## 3.5.3
`2022-8-13`
Expand Down
2 changes: 1 addition & 1 deletion script/parser/luadoc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Symbol <- ({} {
} {})
-> Symbol
]], {
s = m.S' \t',
s = m.S' \t\v\f',
ea = '\a',
eb = '\b',
ef = '\f',
Expand Down
2 changes: 1 addition & 1 deletion script/parser/tokens.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local m = require 'lpeglabel'

local Sp = m.S' \t'
local Sp = m.S' \t\v\f'
local Nl = m.P'\r\n' + m.S'\r\n'
local Number = m.R'09'^1
local Word = m.R('AZ', 'az', '__', '\x80\xff') * m.R('AZ', 'az', '09', '__', '\x80\xff')^0
Expand Down

0 comments on commit 436e23f

Please sign in to comment.