aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/client')
-rw-r--r--src/command/client/history.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/client/history.rs b/src/command/client/history.rs
index 34b851d9..7382eba6 100644
--- a/src/command/client/history.rs
+++ b/src/command/client/history.rs
@@ -175,7 +175,7 @@ impl Cmd {
Self::Start { command: words } => {
let command = words.join(" ");
- if command.starts_with(' ') {
+ if command.starts_with(' ') || settings.history_filter.is_match(&command) {
return Ok(());
}