diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-12-06 09:34:52 -0600 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-12-06 09:34:52 -0600 |
commit | f388691a3067cd99166c3ab6dbe0620d64269690 (patch) | |
tree | 9aa8cb430d1860e8d61fc051a8f8e271d9673b66 | |
parent | actually save all the history for real (diff) | |
download | dotfiles-f388691a3067cd99166c3ab6dbe0620d64269690.tar dotfiles-f388691a3067cd99166c3ab6dbe0620d64269690.tar.gz dotfiles-f388691a3067cd99166c3ab6dbe0620d64269690.tar.bz2 dotfiles-f388691a3067cd99166c3ab6dbe0620d64269690.tar.lz dotfiles-f388691a3067cd99166c3ab6dbe0620d64269690.tar.xz dotfiles-f388691a3067cd99166c3ab6dbe0620d64269690.tar.zst dotfiles-f388691a3067cd99166c3ab6dbe0620d64269690.zip |
get rid of is-at-least
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-rw-r--r-- | dot_config/zsh/executable_dot_zshopts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/dot_config/zsh/executable_dot_zshopts b/dot_config/zsh/executable_dot_zshopts index 7eaf743..cc26e74 100644 --- a/dot_config/zsh/executable_dot_zshopts +++ b/dot_config/zsh/executable_dot_zshopts @@ -32,12 +32,9 @@ setopt HIST_VERIFY # Don't execute immediately upon history expans setopt BANG_HIST # Treat the '!' character specially during expansion. setopt complete_aliases # complete aliases +setopt complete_in_word # complete in the middle of a word -# Disable this on boxes that are affected by bug -# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=924736 -# is-at-least 5.5 && unsetopt hist_reduce_blanks -# bugfix is incoming, lets see what it does -is-at-least 5.7.2 && setopt hist_reduce_blanks +setopt hist_reduce_blanks setopt hist_ignore_space # lines starting with space don't go into the # history |