Skip to content

Commit 9ca1bc0

Browse files
committed
docs(CHANGELOG): tweak
1 parent 459ffb5 commit 9ca1bc0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414

1515
### Perf
1616

17-
- avoid unnecessary render and filter.
17+
- Avoid unnecessary render and filter.
1818

1919
## [0.9.1] - 2024-05-18
2020

2121
### Fixed
2222

23-
Tui: submit panel can't vertical scroll.
23+
- Tui: submit panel can't vertical scroll.
2424

2525
## [0.9.0] - 2024-05-14
2626

crates/lcode/src/editor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ impl Editor {
120120
.front()
121121
.map_or("vim", |v| v.as_str());
122122

123-
if editor.contains("vim") {
123+
if editor == "vim" || editor == "nvim" {
124124
ed.extend([
125125
code_path,
126126
"-c".to_owned(),

0 commit comments

Comments
 (0)