We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 459ffb5 commit 9ca1bc0Copy full SHA for 9ca1bc0
CHANGELOG.md
@@ -14,13 +14,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
15
### Perf
16
17
-- avoid unnecessary render and filter.
+- Avoid unnecessary render and filter.
18
19
## [0.9.1] - 2024-05-18
20
21
### Fixed
22
23
-Tui: submit panel can't vertical scroll.
+- Tui: submit panel can't vertical scroll.
24
25
## [0.9.0] - 2024-05-14
26
crates/lcode/src/editor.rs
@@ -120,7 +120,7 @@ impl Editor {
120
.front()
121
.map_or("vim", |v| v.as_str());
122
123
- if editor.contains("vim") {
+ if editor == "vim" || editor == "nvim" {
124
ed.extend([
125
code_path,
126
"-c".to_owned(),
0 commit comments