Add ctrl L for clear screen

This commit is contained in:
flyingscorpio@arch-desktop 2020-05-27 11:28:36 +02:00
parent c46221ed15
commit c012741d89

View file

@ -17,14 +17,18 @@ $endif
$if mode=vi
set keymap vi-command
# these are for vi-command mode
Control-l: clear-screen
"\e[A": history-search-backward
"\e[B": history-search-forward
j: history-search-forward
k: history-search-backward
set keymap vi-insert
# these are for vi-insert mode
Control-l: clear-screen
"\e[A": history-search-backward
"\e[B": history-search-forward
# escape binding as in vimrc
"jk": vi-movement-mode
$endif