diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-11-05 06:55:22 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-11-05 06:55:22 +0000 |
commit | 77175da5c84b8d74d57e5837658c56fc09faf28f (patch) | |
tree | b83d539fdd56553fccae46803178c4083adb91b8 /app-text/glark | |
parent | Stable for HPPA (bug #343751). (diff) | |
download | gentoo-2-77175da5c84b8d74d57e5837658c56fc09faf28f.tar.gz gentoo-2-77175da5c84b8d74d57e5837658c56fc09faf28f.tar.bz2 gentoo-2-77175da5c84b8d74d57e5837658c56fc09faf28f.zip |
Cleaned old files, #344217
Diffstat (limited to 'app-text/glark')
-rw-r--r-- | app-text/glark/files/1.7.2/glark-completion | 31 | ||||
-rw-r--r-- | app-text/glark/files/1.7.3/glark-completion | 33 |
2 files changed, 0 insertions, 64 deletions
diff --git a/app-text/glark/files/1.7.2/glark-completion b/app-text/glark/files/1.7.2/glark-completion deleted file mode 100644 index 2dd71c395f49..000000000000 --- a/app-text/glark/files/1.7.2/glark-completion +++ /dev/null @@ -1,31 +0,0 @@ -# Author: Ciaran McCreesh <ciaranm@gentoo.org> -# -# completion for glark - -_glark() -{ - local cur prev - - COMPREPLY=() - cur=${COMP_WORDS[COMP_CWORD]} - prev=${COMP_WORDS[COMP_CWORD-1]} - - if [[ "${cur}" == -* ]] || [[ ${COMP_CWORD} -eq 1 ]] ; then - COMPREPLY=( $( compgen -W ' --directories --binary-files --basename \ - --name --fullname --path --exclude-matching --recurse \ - --split-as-path --no-split-as-path --and --before --after \ - --file --ignore-case --match-limit --or --range \ - --invert-match --word --word-regexp --line-regexp --xor \ - --after-context --before-context --context --count \ - --file-color --no-filter --grep --no-filename --with-filename \ - --files-with-matches --files-without-match --line-number \ - --no-line-number --line-number-color --text-color --highlight \ - --no-highlight --extract-matches --null --help --config \ - --explain --quiet --no-messages --no-quiet --version \ - --verbose' -- $cur ) ) - else - _filedir - fi -} - -complete -F _glark glark diff --git a/app-text/glark/files/1.7.3/glark-completion b/app-text/glark/files/1.7.3/glark-completion deleted file mode 100644 index 2a1c596f63dd..000000000000 --- a/app-text/glark/files/1.7.3/glark-completion +++ /dev/null @@ -1,33 +0,0 @@ -# Author: Ciaran McCreesh <ciaranm@gentoo.org> -# -# completion for glark - -_glark() -{ - local cur prev - - COMPREPLY=() - cur=${COMP_WORDS[COMP_CWORD]} - prev=${COMP_WORDS[COMP_CWORD-1]} - - if [[ "${cur}" == -* ]] || [[ ${COMP_CWORD} -eq 1 ]] ; then - COMPREPLY=( $( compgen -W ' --directories --binary-files --basename \ - --name --fullname --path --exclude-matching --recurse \ - --split-as-path --no-split-as-path --and --before --after \ - --file --ignore-case --match-limit --or --range \ - --invert-match --word --word-regexp --line-regexp --xor \ - --after-context --before-context --context --count \ - --file-color --no-filter --grep --no-filename --with-filename \ - --files-with-matches --files-without-match --line-number \ - --no-line-number --line-number-color --text-color --highlight \ - --no-highlight --extract-matches --null --help --config \ - --explain --quiet --no-messages --no-quiet --version \ - --verbose --label' -- $cur ) ) - else - _filedir - fi -} - -complete -o filenames -F _glark glark - -# vim: set ft=sh sw=4 et sts=4 : |