Skip to content

Commit 2be39ee

Browse files
committed
plugin/history: no need to set a trap
Instead of globbally clearing `$HISTTIMEFORMAT` and setting a return trap to re-enable it, just make it local to the function. Also, set the defaults in a way that is happy with read-only parameters. # Conflicts: # plugins/available/history.plugin.bash
1 parent 0103762 commit 2be39ee

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

plugins/available/history.plugin.bash

+7-12
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,21 @@
22
cite about-plugin
33
about-plugin 'improve history handling with sane defaults'
44

5-
# append to bash_history if Terminal.app quits
5+
# append to bash_history on exit.
66
shopt -s histappend
77

8-
# erase duplicates; alternative option: export HISTCONTROL=ignoredups
9-
export HISTCONTROL=${HISTCONTROL:-ignorespace:erasedups}
8+
# erase duplicates; alternative option: HISTCONTROL=ignoredups
9+
: "${HISTCONTROL:=ignorespace:erasedups}"
1010

1111
# resize history to 100x the default (500)
12-
export HISTSIZE=${HISTSIZE:-50000}
12+
: "${HISTSIZE:=50000}"
1313

1414
top-history() {
1515
about 'print the name and count of the most commonly run tools'
1616

17-
if [[ -n $HISTTIMEFORMAT ]]; then
18-
# To parse history we need a predictable format, which HISTTIMEFORMAT
19-
# gets in the way of. So we unset it and set a trap to guarantee the
20-
# user's environment returns to normal even if the pipeline below fails.
21-
# shellcheck disable=SC2064
22-
trap "export HISTTIMEFORMAT='$HISTTIMEFORMAT'" RETURN
23-
unset HISTTIMEFORMAT
24-
fi
17+
# To parse history we need a predictable format, which HISTTIMEFORMAT
18+
# gets in the way of. So we clear it locally.
19+
local HISTTIMEFORMAT
2520

2621
history \
2722
| awk '{

0 commit comments

Comments
 (0)