Skip to content

Commit 436e23f

Browse files
committed
fix #1493
1 parent e6443a0 commit 436e23f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* `CHG` `document-symbol`: redesigned to better support for `Sticky Scroll` feature of VSCode
66
* `FIX` `diagnostics.workspaceDelay` can not prevent first workspace diagnostic
77
* `FIX` [#1476](https://github.com/sumneko/lua-language-server/issues/1476)
8+
* `FIX` [#1493](https://github.com/sumneko/lua-language-server/issues/1493)
89

910
## 3.5.3
1011
`2022-8-13`

script/parser/luadoc.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Symbol <- ({} {
6363
} {})
6464
-> Symbol
6565
]], {
66-
s = m.S' \t',
66+
s = m.S' \t\v\f',
6767
ea = '\a',
6868
eb = '\b',
6969
ef = '\f',

script/parser/tokens.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local m = require 'lpeglabel'
22

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

0 commit comments

Comments
 (0)