diff options
author | Joe Block <jpb@unixorn.net> | 2014-11-30 17:39:21 -0800 |
---|---|---|
committer | Joe Block <jpb@unixorn.net> | 2014-11-30 17:39:21 -0800 |
commit | 5bf715787a4483cafd70461417cb9a1bf8d1509f (patch) | |
tree | 4d2ade54cea04db897509a2ff153c32d2834eefc | |
parent | 1ebc98b9ede5ad5084b3e504e4fc8c01cb93be71 (diff) | |
download | zsh-5bf715787a4483cafd70461417cb9a1bf8d1509f.tar.gz zsh-5bf715787a4483cafd70461417cb9a1bf8d1509f.tar.bz2 zsh-5bf715787a4483cafd70461417cb9a1bf8d1509f.zip |
Existing code indents with spaces, not tabs, conform.
-rw-r--r-- | lib/history.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/history.zsh b/lib/history.zsh index 12dbcf4ee..179c22848 100644 --- a/lib/history.zsh +++ b/lib/history.zsh @@ -3,10 +3,10 @@ if [ -z "$HISTFILE" ]; then HISTFILE=$HOME/.zsh_history fi if [ -z "$HISTSIZE" ]; then - HISTSIZE=10000 + HISTSIZE=10000 fi if [ -z "$SAVEHIST" ]; then - SAVEHIST=10000 + SAVEHIST=10000 fi setopt extended_history |