Skip to content
Snippets Groups Projects
Commit 743b1e74 authored by Jonathan Krebs's avatar Jonathan Krebs
Browse files

.

parent c9cb1661
No related branches found
No related tags found
No related merge requests found
alias ls="ls --color=auto"
# bash completion for herbstclient
_herbstclient_complete() {
local IFS=$'\n'
# do not split at =, because BASH would not split at a '='.
COMP_WORDBREAKS=${COMP_WORDBREAKS//=}
COMPREPLY=(
# just call the herbstclient complete .. but without herbstclient as argument
$(herbstclient -q complete_shell "$((COMP_CWORD-1))" "${COMP_WORDS[@]:1}")
)
}
complete -F _herbstclient_complete -o nospace herbstclient
......@@ -6,5 +6,3 @@ for rc in ~/bashrc/[0-9][0-9]-*
do
source "$rc"
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment