bashrc: run shellcheck on it

This commit is contained in:
Benedikt Heine 2026-01-19 00:01:31 +01:00 committed by Felix Buehler
parent 25854fdd72
commit febd3f1101

View file

@ -20,7 +20,7 @@ export NEWT_COLORS='root=black,black;window=black,black;border=white,black;listb
alias reload=". ~/.bashrc"
# Bind PageUp and PageDown to history search
if [ -n "$BASH_VERSION" -a -n "$PS1" ]; then
if [ -n "$BASH_VERSION" ] && [ -n "$PS1" ]; then
bind '"\e[5~": history-search-backward'
bind '"\e[6~": history-search-forward'
fi