blob: 4ec6049915024f5279cb7114b645817ac75f6e00 (
plain)
1
2
3
4
5
6
7
8
|
# Readline key bindings for both the vi-insert and vi-command keymaps
"\C-l": clear-screen # Ctrl+l clear screen
"\C-w": unix-filename-rubout # Ctrl+w erase word backward (hyphens included)
"\C-k": history-search-backward # Ctrl+k search history backward (non-incremental)
"\C-j": history-search-forward # Ctrl+j search history forward (non-incremental)
# vim: filetype=readline
|