Files
dotfiles/.inputrc
matt 9309faae74 Basic dotfiles
Still need to put these into folders expected by bash_profile and install.sh
2023-10-02 18:56:13 +02:00

14 lines
382 B
Plaintext

#!/usr/bin/env bash
# Make Tab autocomplete regardless of filename case
set completion-ignore-case on
# List all matches in case multiple possible completions are possible
set show-all-if-ambiguous on
# Flip through autocompletion matches with Shift-Tab.
"\e[Z": menu-complete
# Filtered history search
"\e[A": history-search-backward
"\e[B": history-search-forward