updated changelog and fixed lint

This commit is contained in:
XeroOl 2024-02-16 23:29:50 -06:00
parent d8f0d396a9
commit 21500707de
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
* Fix bug with renaming vars
* Improve multival tracking
* `textEdit` field is present in completions
## 0.1.0

View File

@ -110,7 +110,7 @@ However, fennel-ls can fall back to positionEncoding=utf-16 (with a performance
(let [?position-encodings (?. init-params :capabilities :general :positionEncodings)
utf8?
(if (= (type ?position-encodings) :table)
(accumulate [utf-8? false
(accumulate [_utf-8? false
_ encoding (ipairs ?position-encodings)]
(or (= encoding :utf-8)
(= encoding :utf8)))