We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6cac23 commit fb1d31dCopy full SHA for fb1d31d
changelog.md
@@ -3,6 +3,7 @@
3
## 2.6.1
4
* `FIX` modify luarc failed
5
* `FIX` library files not recognized correctly
6
+* `FIX` [#906](https://github.com/sumneko/lua-language-server/issues/906)
7
8
## 2.6.0
9
`2022-1-13`
script/glob/matcher.lua
@@ -3,7 +3,7 @@ local m = require 'lpeglabel'
local Slash = m.S('/\\')^1
local Symbol = m.S',{}[]*?/\\'
local Char = 1 - Symbol
-local Path = Char^1 * Slash
+local Path = (1 - m.S[[\/:*?"<>|]])^1 * Slash
local NoWord = #(m.P(-1) + Symbol)
local function whatHappened()
return m.Cmt(m.P(1)^1, function (...)
0 commit comments