From e9c75a78375cff98bb844d6db8ce15d965cba320 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 11 Oct 2019 19:07:05 -0700 Subject: [PATCH] Use `tput cvvis` and `tput civis` for cursor visibility and fix for `>` shell mode not showing cursor. --- bb.h | 9 +++++---- bindings.bb | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/bb.h b/bb.h index 01be685..79b7d27 100644 --- a/bb.h +++ b/bb.h @@ -241,20 +241,21 @@ static const char *bbcmdfn = "bb() {\n" ASK ";\n" #else " [ $# -lt 2 ] && printf '\033[31;1mNot enough args to ask!\033[0m\n' && return 1;\n" -" printf \"\033[1m%s\033[0m\033[?25h\" \"$2\" >/dev/tty;\n" -" read $1 /dev/tty\n" +" printf \"\033[1m%s\033[0m\" \"$2\" >/dev/tty;\n" +" tput cvvis >/dev/tty;\n" +" read $1 /dev/tty;\n" #endif "}\n" "ask1() {\n" #ifdef ASK1 ASK1 ";\n" #else -" printf \"\033[?25l\" >/dev/tty;\n" +" tput civis >/dev/tty;\n" " printf \"\033[1m%s\033[0m\" \"$2\" >/dev/tty;\n" " stty -icanon -echo >/dev/tty;\n" " eval \"$1=\\$(dd bs=1 count=1 2>/dev/null /dev/tty;\n" -" printf \"\033[?25h\" >/dev/tty;\n" +" tput cvvis >/dev/tty;\n" #endif "}\n" "confirm() {\n" diff --git a/bindings.bb b/bindings.bb index e7a90ea..83b6de3 100644 --- a/bindings.bb +++ b/bindings.bb @@ -130,7 +130,7 @@ p: # Page through a file with $PAGER :: # Run a command ask cmd ':' && sh -c "$BBSHELLFUNC$cmd" -- "$@"; bb +r; pause >: # Open a shell - tput rmcup; $SHELL; bb +r + tput rmcup; tput cvvis; $SHELL; bb +r r,F2: # Rename a file ask newname "Rename $(printf "\033[33m%s\033[39m" "$(basename "$BBCURSOR")"): " "$(basename "$BBCURSOR")" || exit r="$(dirname "$BBCURSOR")/$newname" || exit