commit 6ce986001ac99b93590e733d73a415e03e367096 parent 57a0495ff425e42770113f7a814bb49f338407ce Author: sin <sin@2f30.org> Date: Tue, 17 Sep 2013 14:53:34 +0100 Add C-l bind for mksh Diffstat:
M | etc/skel/.mkshrc | | | 3 | +++ |
M | root/.profile | | | 3 | +++ |
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/etc/skel/.mkshrc b/etc/skel/.mkshrc @@ -2,3 +2,6 @@ PATH=/bin:/sbin:/devel/x86_64-linux-musl/bin TERM=vt100 PS1='$(hostname)# ' export PATH TERM PS1 + +# C-l should clear the screen +bind -m '^L'='^U'clear'^J''^Y' diff --git a/root/.profile b/root/.profile @@ -2,3 +2,6 @@ PATH=/bin:/sbin:/devel/x86_64-linux-musl/bin TERM=vt100 PS1='$(hostname)# ' export PATH TERM PS1 + +# C-l should clear the screen +bind -m '^L'='^U'clear'^J''^Y'