From feaa9ed31007925107ef2e5a5a9445788bd864e7 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Wed, 30 Aug 2023 19:04:11 +0200 Subject: [PATCH] Disable raw-control-chars in less MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Due to "There is no raw‐control‐chars option" warning. --- zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 6092c52..fa1662b 100644 --- a/zshrc +++ b/zshrc @@ -69,8 +69,9 @@ alias ca='cat --number' alias d='docker' # Correct ip command alias ipa='ip a' +# Disable because of "There is no raw‐control‐chars option" warning… # less with raw character -alias less='less --raw‐control‐chars' +#alias less='less --raw‐control‐chars' #alias less='less --quiet' # Call last command alias pp='fc -e -'