1
0
Fork 0
mirror of https://github.com/hcartiaux/dotfiles.git synced 2024-10-18 09:15:24 +02:00

[bash] Enable cdable_vars and direxpand features

This commit is contained in:
Hyacinthe Cartiaux 2015-07-02 12:18:15 +02:00
parent 34ee7c392b
commit ebd95d3842

View file

@ -69,6 +69,9 @@ shopt -s cdspell >/dev/null 2>&1 # correct minor errors in the
shopt -s extglob >/dev/null 2>&1 # extended pattern matching
shopt -s hostcomplete >/dev/null 2>&1 # perform hostname completion
# on '@'
shopt -s direxpand >/dev/null 2>&1 # replaces variables on filename completion
shopt -s cdable_vars >/dev/null 2>&1
#shopt -s no_empty_cmd_completion >/dev/null 2>&1
shopt -u mailwarn >/dev/null 2>&1