File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.0.2] - 2023-11-05
9
+ ### Fixed
10
+ - Health check: Fix broken tree-sitter parser check.
11
+
8
12
## [ 1.0.1] - 2023-10-29
9
13
### Changed
10
14
- Remove ` plenary.nvim ` dependency.
Original file line number Diff line number Diff line change @@ -138,8 +138,8 @@ function health.check()
138
138
end
139
139
140
140
start (' Checking tree-sitter parsers' )
141
- local ok = pcall (vim .treesitter .get_string_parser , ' ' , ' haskell' )
142
- if not ok then
141
+ local success = pcall (vim .treesitter .get_string_parser , ' ' , ' haskell' )
142
+ if not success then
143
143
error (' The tree-sitter parser for Haskell is not installed.' )
144
144
else
145
145
ok (' The tree-sitter parser for Haskell is installed.' )
You can’t perform that action at this time.
0 commit comments