1
0
Files
dotfiles/.inputrc

37 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2026-01-16 11:10:01 +01:00
# .inputrc
# https://linux.die.net/man/3/readline
2022-01-03 11:33:05 +01:00
2025-08-27 15:27:51 +02:00
# enable/disable 8bit input
#set input-meta off
#set convert-meta on
2023-08-01 00:28:38 +02:00
#set output-meta off
2022-01-03 11:33:05 +01:00
2026-01-16 11:10:01 +01:00
# none, visible or audible
set bell-style visible
# Readline config settings
set completion-query-items 40 # Ask before displaying >40 items
set completion-ignore-case on
set colored-stats on # Turn on completion colors.
set colored-completion-prefix on # Color the typed completion prefix.
2026-01-07 19:09:08 +01:00
# Keybinds
2026-01-16 11:10:01 +01:00
"\e[1~": beginning-of-line # Home
"\e[4~": end-of-line # End
"\e[5~": beginning-of-history # PageUp
"\e[6~": end-of-history # PageDown
"\e[2~": overwrite-mode # Insert
"\eOC": forward-word # Ctrl-Right
"\eOD": backward-word # Ctrl-Left
"\e[3;5~": kill-word # Ctrl-Del - delete word to the right
"\e[3;6~": kill-line # Ctrl-Shift-Del - delete to end of the line
2022-01-03 11:33:05 +01:00
2026-01-16 11:10:01 +01:00
"\e[A": history-search-backward # ArrowUp
"\e[B": history-search-forward # ArrowDown
2022-01-03 11:33:05 +01:00
2026-01-16 11:10:01 +01:00
"\e[1;3A": "cd ..\n" # Alt-UpArrow for 'cd ..'
"\e[1;3B": "cd -\n" # Alt-ArrowDown for previous dir
2022-01-03 11:33:05 +01:00
2023-08-01 00:28:38 +02:00
# Ctrl-K - clears the input line regardless of cursor pos
2026-01-16 11:10:01 +01:00
C-k: "\C-e\C-u"