diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-06-17 23:08:01 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-06-17 23:08:01 +0530 |
commit | 8b92e68f4c902e399f799fa74dd60d3c3ccadd35 (patch) | |
tree | d863914d7b7a5cad77457b928a6ea9a2e01e23e5 | |
parent | 6ee3405e66c4106324355f4cc7e2fdfad1c17aea (diff) |
zsh: history_search: avoid duplicate entries
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
-rw-r--r-- | .config/zsh/history_search.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/zsh/history_search.zsh b/.config/zsh/history_search.zsh index 3ea7df9..8b82ec9 100644 --- a/.config/zsh/history_search.zsh +++ b/.config/zsh/history_search.zsh @@ -18,4 +18,4 @@ zle -N down-line-or-beginning-search [[ -n "${key[Down]}" ]] && bindkey -- "${key[Down]}" down-line-or-beginning-search ## Do not write duplicate events to history -# setopt HIST_SAVE_NO_DUPS +setopt HIST_SAVE_NO_DUPS |