diff options
-rw-r--r-- | etc/bash/rc | 15 | ||||
-rw-r--r-- | etc/guix/home.scm | 2 |
2 files changed, 10 insertions, 7 deletions
diff --git a/etc/bash/rc b/etc/bash/rc index 7f1d75d..f81e350 100644 --- a/etc/bash/rc +++ b/etc/bash/rc @@ -329,9 +329,12 @@ if [ -r "$XDG_CONFIG_HOME"/bash/privrc.sh ]; then . "$XDG_CONFIG_HOME"/bash/privrc.sh fi - - -# FIXME: completion -for f in "$HOME_ENVIRONMENT"/profile/etc/bash_completion.d/*; do - . "$f" -done +case $- in + *i*) + for f in "$HOME_ENVIRONMENT"/profile/etc/bash_completion.d/*; do + . "$f" + done + ;; + *) + ;; +esac diff --git a/etc/guix/home.scm b/etc/guix/home.scm index 54bcf56..4820850 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -184,7 +184,7 @@ man-pages posix-man-pages - bash-completion ;; FIXME: should this exist? IIUC, this is a misleading name + bash-completion git git:send-email |