summaryrefslogtreecommitdiffstats
path: root/src/key_command/command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/key_command/command.rs')
-rw-r--r--src/key_command/command.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/key_command/command.rs b/src/key_command/command.rs
index c372fe4..b3bfc7e 100644
--- a/src/key_command/command.rs
+++ b/src/key_command/command.rs
@@ -1,7 +1,9 @@
use std::path;
use crate::commands::quit::QuitAction;
-use crate::config::option::{LineMode, LineNumberStyle, NewTabMode, SelectOption, SortType};
+use crate::config::option::{
+ LineMode, LineNumberStyle, NewTabMode, SelectOption, SortType, TabBarDisplayMode,
+};
use crate::io::FileOperationOptions;
#[derive(Clone, Debug)]
@@ -132,6 +134,7 @@ pub enum Command {
pattern: String,
},
+ SetTabBarDisplayMode(TabBarDisplayMode),
NewTab {
mode: NewTabMode,
},