blob: 5283e8ff99e9681d6d6dbfc374be0d9b43516851 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# keybinds
bind ti kbs ct prompt_del_left_or_previous
bind ti kdch1 ct prompt_del_right
bind ti kRIT5 ct cursor_right_word
bind ti kLFT5 ct cursor_left_word
bind key \x01 ct cursor_begin
bind key \x03 ct prompt_clear
bind key \x04 exit
bind key \x05 ct cursor_end
bind key \x08 ct prompt_del_left_word
bind key \x0c ct screen_clear
bind key \t ct complete
bind key \x1b[D ct cursor_left
bind key \x1b[C ct cursor_right
bind key \x1b[A ct history_previous
bind key \x1b[B ct history_next
bind key \r ct try_submit_command
bind key \n ct try_submit_command
bind key \x1bd ct prompt_del_right_word
bind key \x17 ct prompt_del_left_word
alias ls = 'ls --color=auto'
echo hello to pish!
|