Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 84 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ once_cell = "1.19"
whoami = "2.1"

# Modern CLI/TUI
reedline = "0.32"
reedline = "0.45"
crossterm = "0.27"
ratatui = "0.26"
fuzzy-matcher = "0.3"
Expand Down
3 changes: 3 additions & 0 deletions src/input/completer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ impl SelfwareCompleter {
extra: None,
span: Span::new(span_start, span_end),
append_whitespace: true,
match_indices: None,
},
)
})
Expand Down Expand Up @@ -91,6 +92,7 @@ impl SelfwareCompleter {
extra: None,
span: Span::new(span_start, span_end),
append_whitespace: true,
match_indices: None,
},
)
})
Expand Down Expand Up @@ -168,6 +170,7 @@ impl SelfwareCompleter {
extra: None,
span: Span::new(span_start, span_end),
append_whitespace: !is_dir,
match_indices: None,
},
));
}
Expand Down
1 change: 1 addition & 0 deletions src/input/ghost_text.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ impl Hinter for GhostTextHinter {
_pos: usize,
history: &dyn History,
_use_ansi_coloring: bool,
_cwd: &str,
) -> String {
// First try pattern hints
if let Some(hint) = self.find_pattern_hint(line) {
Expand Down
Loading