1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
# Listing bindings
bind --preset '' self-insert
bind --preset \n execute
bind --preset \r execute
bind --preset \t complete
bind --preset \cc commandline\ \'\'
bind --preset \cd exit
bind --preset \ce bind
bind --preset \e\[A up-line
bind --preset \e\[B down-line
bind --preset \e\[C forward-char
bind --preset \e\[D backward-char
bind -M bind_mode \cx true
bind --preset '' self-insert
bind --preset \n execute
bind --preset \r execute
bind --preset \t complete
bind --preset \cc commandline\ \'\'
bind --preset \cd exit
bind --preset \ce bind
bind --preset \e\[A up-line
bind --preset \e\[B down-line
bind --preset \e\[C forward-char
bind --preset \e\[D backward-char
bind -M bind_mode \cx true
# Preset only
bind --preset '' self-insert
bind --preset \n execute
bind --preset \r execute
bind --preset \t complete
bind --preset \cc commandline\ \'\'
bind --preset \cd exit
bind --preset \ce bind
bind --preset \e\[A up-line
bind --preset \e\[B down-line
bind --preset \e\[C forward-char
bind --preset \e\[D backward-char
# User only
bind -M bind_mode \cx true
# Adding bindings
bind --preset '' self-insert
bind --preset \n execute
bind --preset \r execute
bind --preset \t complete
bind --preset \cc commandline\ \'\'
bind --preset \cd exit
bind --preset \ce bind
bind --preset \e\[A up-line
bind --preset \e\[B down-line
bind --preset \e\[C forward-char
bind --preset \e\[D backward-char
bind -M bind_mode \cx true
bind \t 'echo banana'
# Erasing bindings
bind --preset \t complete
|