From 7c2bf505f21f168ba4e3dbe0ab8066625d9f4796 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Sun, 8 Oct 2023 23:44:13 -0500 Subject: [PATCH] home | bashrc - fix parsing issue, remove bash_complition bit for task alias --- home/files/bash/bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/files/bash/bashrc b/home/files/bash/bashrc index 1692951..30070ab 100755 --- a/home/files/bash/bashrc +++ b/home/files/bash/bashrc @@ -143,7 +143,7 @@ then [ -f /etc/profile.d/bash-completion.sh ] && source /etc/profile.d/bash-completion.sh [ -f /usr/local/share/bash-completion/bash_completion.sh ] && source/usr/local/share/bash-completion/bash_completion.sh [ -f /usr/share/bash-completion/bash_completion ] && source /usr/share/bash-completion/bash_completion - [ ! -v ${BASH_COMPLETION_VERSINFO} -a -d ${HOME}/.bash_completion.d ] && for i in $(ls -1 ${HOME}/.bash_completion.d/*.sh); do source $i; done + [ ! -v ${BASH_COMPLETION_VERSINFO} -a -d ${HOME}/.bash_completion.d ] && for i in $(\ls -1 ${HOME}/.bash_completion.d/*.sh); do source $i; done export PROMPT_COMMAND='history -a' # Always append history files PS1='\u@\h:\w> ' @@ -166,5 +166,5 @@ then # BEGIN_KITTY_SHELL_INTEGRATION if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi # END_KITTY_SHELL_INTEGRATION - complete -o nospace -F _task t + #complete -o nospace -F _task t fi