diff options
author | Robby Russell <robby@planetargon.com> | 2012-12-02 12:26:41 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2012-12-02 12:26:41 -0800 |
commit | e10552b4038e98eecf789eb9eaecf6e8318c474b (patch) | |
tree | 78f38dee8e8bc136879dc97416f92835012f4eb0 /lib/misc.zsh | |
parent | 5ed75de5ce320a52b8178c8d7db6f505a205dd08 (diff) | |
parent | daa6ecebc1034dab162c90b4fd7f4cb605d969d4 (diff) | |
download | zsh-e10552b4038e98eecf789eb9eaecf6e8318c474b.tar.gz zsh-e10552b4038e98eecf789eb9eaecf6e8318c474b.tar.bz2 zsh-e10552b4038e98eecf789eb9eaecf6e8318c474b.zip |
Merge pull request #1354 from F30/master
Set the '-R' option for less not in $PAGER, but as $LESS
Diffstat (limited to 'lib/misc.zsh')
-rw-r--r-- | lib/misc.zsh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/misc.zsh b/lib/misc.zsh index 0f7e7e925..a8678b8ec 100644 --- a/lib/misc.zsh +++ b/lib/misc.zsh @@ -9,5 +9,7 @@ bindkey "^[m" copy-prev-shell-word setopt long_list_jobs ## pager -export PAGER="less -R" +export PAGER="less" +export LESS="-R" + export LC_CTYPE=$LANG |