fix: Only try expanding directory completion if it makes sense
Fixes #487
This commit is contained in:
parent
58d08d36ae
commit
817a7e0bd6
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ impl Component for Prompt {
|
||||||
code: KeyCode::Enter,
|
code: KeyCode::Enter,
|
||||||
..
|
..
|
||||||
} => {
|
} => {
|
||||||
if self.line.ends_with('/') {
|
if self.selection.is_some() && self.line.ends_with('/') {
|
||||||
self.completion = (self.completion_fn)(&self.line);
|
self.completion = (self.completion_fn)(&self.line);
|
||||||
self.exit_selection();
|
self.exit_selection();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue