File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.
66The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
77and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
88
9+ ## [ 4.23.4] - 2024-05-23
10+
11+ ### Fixed
12+
13+ - LSP: Error when editing a rust file in a directory
14+ that does not exist [ (#404 )] ( https://github.com/mrcjkb/rustaceanvim/issues/404 ) .
15+
916## [ 4.23.3] - 2024-05-23
1017
1118### Fixed
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function cargo.get_root_dir(file_name)
5656 cargo_metadata = table.concat (d , ' \n ' )
5757 end ,
5858 stdout_buffered = true ,
59- cwd = path ,
59+ cwd = compat . uv . fs_stat ( path ) and path or cargo_crate_dir or vim . fn . getcwd () ,
6060 })
6161 if cm > 0 then
6262 cm = vim .fn .jobwait ({ cm })[1 ]
You can’t perform that action at this time.
0 commit comments