From e35d6b984ab1404cd47973788e53a9595e93cb9e Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Sun, 10 Jun 2012 19:55:13 -0400 Subject: [PATCH] Do not remove superfluous blanks from events Recording superflous blanks is useful when indenting multiline commands. --- modules/history/README.md | 1 - modules/history/init.zsh | 1 - 2 files changed, 2 deletions(-) diff --git a/modules/history/README.md b/modules/history/README.md index 502eece..e7adcd1 100644 --- a/modules/history/README.md +++ b/modules/history/README.md @@ -23,7 +23,6 @@ Options - `HIST_FIND_NO_DUPS` does not display a previously found event. - `HIST_IGNORE_SPACE` does not record an event starting with a space. - `HIST_SAVE_NO_DUPS` does not write a duplicate event to the history file. - - `HIST_REDUCE_BLANKS` removes superfluous blanks before recording an event. - `HIST_VERIFY` does not execute immediately upon history expansion. - `HIST_BEEP` beeps when accessing non-existent history. diff --git a/modules/history/init.zsh b/modules/history/init.zsh index 0dcd195..b140d04 100644 --- a/modules/history/init.zsh +++ b/modules/history/init.zsh @@ -20,7 +20,6 @@ setopt HIST_IGNORE_ALL_DUPS # Delete an old recorded event if a new event i setopt HIST_FIND_NO_DUPS # Do not display a previously found event. setopt HIST_IGNORE_SPACE # Do not record an event starting with a space. setopt HIST_SAVE_NO_DUPS # Do not write a duplicate event to the history file. -setopt HIST_REDUCE_BLANKS # Remove superfluous blanks before recording an event. setopt HIST_VERIFY # Do not execute immediately upon history expansion. setopt HIST_BEEP # Beep when accessing non-existent history.