mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
11 lines
263 B
Text
11 lines
263 B
Text
|
typeset -A Keytable
|
||
|
trap 'eval "${Keytable[${.sh.edchar}]}"' KEYBD
|
||
|
function vi_keybind
|
||
|
{
|
||
|
keybind $'\E[A' k # Up key
|
||
|
keybind $'\E[B' j # Down key
|
||
|
keybind $'\E[C' l # Right key
|
||
|
keybind $'\E[D' h # Left key
|
||
|
keybind $'\t' '\' # Tab for command-line completion
|
||
|
}
|