fix(bash): remove temporary variable
This commit is contained in:
parent
6f8c736db7
commit
72820b7b8f
1 changed files with 2 additions and 1 deletions
3
.bashrc
3
.bashrc
|
@ -1,4 +1,4 @@
|
||||||
[[ $- != *i* ]] && return
|
[[ "$-" != *i* ]] && return
|
||||||
|
|
||||||
set -o vi
|
set -o vi
|
||||||
|
|
||||||
|
@ -11,5 +11,6 @@ for f in "$HOME/.config/bash/"*.bash; do
|
||||||
# shellcheck disable=SC1090
|
# shellcheck disable=SC1090
|
||||||
. "$f"
|
. "$f"
|
||||||
done
|
done
|
||||||
|
unset f
|
||||||
|
|
||||||
stty werase undef
|
stty werase undef
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue