From 92e4caa821f2804e7aa04ee138637bf1f230b397 Mon Sep 17 00:00:00 2001 Message-Id: <92e4caa821f2804e7aa04ee138637bf1f230b397.1717816530.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 2 May 2018 13:42:12 +0100 Subject: [PATCH] dot/bashrc: Fix forcing history-expansion on. Organization: Straylight/Edgeware From: Mark Wooding It's done through `set -o' instead of `shopt' and these are different because... umm... At least zsh gets this right. --- dot/bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot/bashrc b/dot/bashrc index f774607..5f9742a 100644 --- a/dot/bashrc +++ b/dot/bashrc @@ -72,7 +72,7 @@ shopt -s extglob if (( ${BASH_VERSINFO[0]} >= 4 )); then shopt -s globstar; fi shopt -s gnu_errfmt shopt -s histappend -shopt -s histexpand +set -o histexpand shopt -s histreedit shopt -u histverify shopt -s hostcomplete -- [mdw]