feat(tui): add select as a prompt command

This commit is contained in:
Orhun Parmaksız 2022-01-20 15:46:12 +03:00
parent 214edad37f
commit 75ef364c5d
No known key found for this signature in database
GPG key ID: F83424824B3E4B90

View file

@ -35,6 +35,7 @@ impl FromStr for Command {
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"search" => Ok(Command::EnableSearch),
"select" => Ok(Command::Select),
"up" => Ok(Command::ScrollUp),
"down" => Ok(Command::ScrollDown),
"copy" => Ok(Command::Copy),