From d1029c257350677206b93acd5ecfd60ed0a1897b Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Sat, 11 Dec 2021 14:32:32 -0600 Subject: Finally fix bruno's bug report Thanks, bruno! Instead of escaping the brackets at all in KEY_BACK and KEY_FORWARD, I just put them in there raw. It's possible that this is a difference between Bash 4 and Bash 5, since I assume I tried it that way before, but I don't remember. Bug reports for Bash 4 users are welcome. --- bollux | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bollux b/bollux index ebdb22f..277af05 100755 --- a/bollux +++ b/bollux @@ -150,8 +150,8 @@ bollux_config() { : "${KEY_OPEN:=o}" # prompt for a link to open : "${KEY_GOTO:=g}" # prompt for a page to 'goto' : "${KEY_GOTO_FROM:=G}" # goto a page with current prefilled - : "${KEY_BACK:='['}" # go back in the history - : "${KEY_FORWARD:=']'}" # go forward in the history + : "${KEY_BACK:=[}" # go back in the history + : "${KEY_FORWARD:=]}" # go forward in the history : "${KEY_REFRESH:=r}" # refresh the page : "${KEY_CYCLE_PRE:=p}" # cycle T_PRE_DISPLAY : "${BOLLUX_CUSTOM_LESSKEY:=$BOLLUX_CONF_DIR/bollux.lesskey}" -- cgit 1.4.1-21-gabe81