Skip to content

Commit f61a5f1

Browse files
committed
Fix create a empty directory
1 parent 7d2036b commit f61a5f1

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

55
---
66

7+
## [0.19.0] - 2025-7-27
8+
9+
### 🐛 Fixed
10+
11+
- **Fix create an empty directory**: Fixed an issue where the language server would create an empty directory.
12+
13+
714
## [0.9.1] - 2025-7-25
815
### 🔧 Changed
916
- **Refactor generic function inference**: Lambda function parameters now use deferred matching, allowing generic types to be inferred from other parameters first. For example:

crates/emmylua_ls/src/cmd_args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub struct CmdArgs {
2727
pub log_path: NoneableString,
2828

2929
/// Path to the resources and logs directory. Use 'none' to indicate that assets should not be output to the file system.
30-
#[cfg_attr(feature = "cli", structopt(long, default_value = "\"\""))]
30+
#[cfg_attr(feature = "cli", structopt(long, default_value = ""))]
3131
pub resources_path: NoneableString,
3232

3333
/// Whether to load the standard library.

0 commit comments

Comments
 (0)