From 703db4a708426ba56f31d2ff53ff0547a6f66de9 Mon Sep 17 00:00:00 2001 From: TKE Date: Sun, 17 May 2020 10:30:02 +0200 Subject: [PATCH] Add quality of life inputrc --- inputrc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 inputrc diff --git a/inputrc b/inputrc new file mode 100644 index 0000000..38035d6 --- /dev/null +++ b/inputrc @@ -0,0 +1,15 @@ +#include all default settings (otherwise ignored) +$include /etc/inputrc + +#ctrl + backspace delete word left of cursor +"\C-h": backward-kill-word +#ctrl + del delete word right of cursor +"\e[3;5~": kill-word +#ctrl + up complete line from history +"\e[1;5A": history-search-backward +#ctrl + +"\e[1;5B": history-search-forward +#show list of possible matches if ambiguous +set show-all-if-ambiguous on +#tab complete even if case is wrong <3 +set completion-ignore-case on