blob: 4b2a0c5802fe8a0fa1fcf09baa409fce07e076e0 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
export LD_LIBRARY_PATH=$LIBRARY_PATH
# kdesrc-build #################################################################
## Add kdesrc-build to PATH
export PATH="$HOME/kde/src/kdesrc-build:$PATH"
## Autocomplete for kdesrc-run
function _comp_kdesrc_run
{
local cur
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
# Complete only the first argument
if [[ $COMP_CWORD != 1 ]]; then
return 0
fi
# Retrieve build modules through kdesrc-run
# If the exit status indicates failure, set the wordlist empty to avoid
# unrelated messages.
local modules
if ! modules=$(kdesrc-run --list-installed);
then
modules=""
fi
# Return completions that match the current word
COMPREPLY=( $(compgen -W "${modules}" -- "$cur") )
return 0
}
## Register autocomplete function
complete -o nospace -F _comp_kdesrc_run kdesrc-run
################################################################################
|