aboutsummaryrefslogtreecommitdiff
path: root/ksh
diff options
context:
space:
mode:
Diffstat (limited to 'ksh')
-rw-r--r--ksh/kshrc.d/bind.ksh5
1 files changed, 3 insertions, 2 deletions
diff --git a/ksh/kshrc.d/bind.ksh b/ksh/kshrc.d/bind.ksh
index af024fb9..c72a8674 100644
--- a/ksh/kshrc.d/bind.ksh
+++ b/ksh/kshrc.d/bind.ksh
@@ -3,6 +3,7 @@ case $KSH_VERSION in
*'93'*)
bind() {
+ # shellcheck disable=SC2154
case ${.sh.edchar} in
$'\f') .sh.edchar=$'\e\f' ;;
esac
@@ -11,11 +12,11 @@ case $KSH_VERSION in
;;
*'MIRBSD KSH'*)
- bind ^L=clear-screen
+ bind '^L'='clear-screen'
;;
*'PD KSH'*)
- bind -m '^L'='^U'clear'^J^Y'
+ bind -m '^L'='^Uclear^J^Y'
;;
esac