diff options
Diffstat (limited to 'src/command/client/history.rs')
| -rw-r--r-- | src/command/client/history.rs | 2 |
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(()); } |
