diff options
author | Felix Dreissig <f30@f30.me> | 2012-10-13 22:53:34 +0200 |
---|---|---|
committer | Felix Dreissig <f30@f30.me> | 2012-10-13 23:16:39 +0200 |
commit | daa6ecebc1034dab162c90b4fd7f4cb605d969d4 (patch) | |
tree | e8a46fdf9c898cab9d1f30ceaca3a6b44e338abd /lib | |
parent | c2ae9e09ca1f33ff1e13e629a0b2e6bdd19f83a9 (diff) | |
download | zsh-daa6ecebc1034dab162c90b4fd7f4cb605d969d4.tar.gz zsh-daa6ecebc1034dab162c90b4fd7f4cb605d969d4.tar.bz2 zsh-daa6ecebc1034dab162c90b4fd7f4cb605d969d4.zip |
Set the '-R' option for less not in $PAGER, but as $LESS.
Diffstat (limited to 'lib')
-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 |