From c2a62117a682a31f0e267bd386409c3ac0dce262 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Tue, 17 Jan 2012 12:26:49 +0900 Subject: [PATCH] disable CR removal in PAGER --- .bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bashrc b/.bashrc index 67b948c..6a15e60 100755 --- a/.bashrc +++ b/.bashrc @@ -42,9 +42,9 @@ replace-cmd(){ export PS1="\$(__my_prompt_function)\$ " # PROMPT_COMMAND=prompt_function -if iswindows +if false # iswindows then - export PAGER="tr -d \\r | less" + export PAGER='tr -d \\r | less' else export PAGER="less" fi