From 8bf807ab49a9de27a8a01157ebc7d7a770dfb229 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 18 Jan 2017 20:46:01 +1300 Subject: Revert "Color ed(1) prompt if possible" This reverts commit ffd9d95b6adf5982448e1685a8c79c74b148cb00. --- sh/shrc.d/ed.sh | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'sh') diff --git a/sh/shrc.d/ed.sh b/sh/shrc.d/ed.sh index 3e544c74..d7d3fa2f 100644 --- a/sh/shrc.d/ed.sh +++ b/sh/shrc.d/ed.sh @@ -11,20 +11,8 @@ ed() { [ -e "$HOME"/.cache/ed/verbose ] && set -- --verbose "$@" - # Add an asterisk prompt (POSIX feature); color it dark green if we can - set -- -p "$( - if [ "$(tput colors || tput Co)" -gt 8 ] ; then - ec=${ED_PROMPT_COLOR:-2} - tput setaf "$ec" || - tput setaf "$ec" 0 0 || - tput AF "$ec" || - tput AF "$ec" 0 0 - printf %s "${ED_PROMPT:-'*'}" - tput sgr0 || tput me - else - printf %s "${ED_PROMPT:-'*'}" - fi 2>/dev/null - )" "$@" + # Add an asterisk prompt (POSIX feature) + set -- -p\* "$@" # Run in rlwrap(1) if available set -- ed "$@" -- cgit v1.2.3