From b48a5c1a2b1734cd887c5a4bc1fd73a9d585e524 Mon Sep 17 00:00:00 2001 From: Chip Senkbeil Date: Wed, 28 Jul 2021 02:26:19 -0500 Subject: [PATCH] Fix program not being option -- still seeing dropped frames (testing with zsh repeat) --- src/opt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opt.rs b/src/opt.rs index 882a4e3..c42b8e0 100644 --- a/src/opt.rs +++ b/src/opt.rs @@ -121,7 +121,7 @@ pub struct ExecuteSubcommand { long, value_name = "json|program|shell", default_value = "shell", - possible_values = &["shell", "json"] + possible_values = &["json", "program", "shell"] )] pub format: ExecuteFormat,