Skip to content

Commit

Permalink
don't diagnose git uri
Browse files Browse the repository at this point in the history
fix #2267
  • Loading branch information
sumneko committed Aug 15, 2023
1 parent fc57390 commit b53c18f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
* `FIX` wrong hover and signature for method with varargs and overloads
* `FIX` [#2155]
* `FIX` [#2224]
* `FIX` [#2267]

[#2155]: https://github.com/LuaLS/lua-language-server/issues/2155
[#2224]: https://github.com/LuaLS/lua-language-server/issues/2224
[#2267]: https://github.com/LuaLS/lua-language-server/issues/2267

## 3.6.25
`2023-7-26`
Expand Down
3 changes: 3 additions & 0 deletions script/file-uri.lua
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ function m.isValid(uri)
if path == '' then
return false
end
if scheme ~= 'file' then
return false
end
return true
end

Expand Down

0 comments on commit b53c18f

Please sign in to comment.