We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8067b80 commit f4bdd7dCopy full SHA for f4bdd7d
src/state.rs
@@ -401,11 +401,10 @@ impl AppState {
401
if let Some(cmd) = self.get_selected_command() {
402
if self.selected_commands.is_empty() {
403
self.selected_commands.push(cmd);
404
- } else {
405
- let command = RunningCommand::new(self.selected_commands.clone());
406
- self.spawn_float(command, 80, 80);
407
- self.selected_commands.clear();
408
}
+ let command = RunningCommand::new(self.selected_commands.clone());
+ self.spawn_float(command, 80, 80);
+ self.selected_commands.clear();
409
} else {
410
self.go_to_selected_dir();
411
0 commit comments