summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Syntychakis2024-05-17 06:51:57 +0000
committerNick Syntychakis2024-05-17 06:51:57 +0000
commit37f046fb93bf7626d3907d72cb416cb7864ff54c (patch)
tree5072cd830c15325592386d34df16c665677b838c
parent67592c9610e6bd552ed89f3bb7c24d1bd336d5c4 (diff)
downloadaur-37f046fb93bf7626d3907d72cb416cb7864ff54c.tar.gz
Removed unused files
-rw-r--r--aws_bash_completer6
-rw-r--r--aws_zsh_completer.sh60
2 files changed, 0 insertions, 66 deletions
diff --git a/aws_bash_completer b/aws_bash_completer
deleted file mode 100644
index 32cd1dd8fd49..000000000000
--- a/aws_bash_completer
+++ /dev/null
@@ -1,6 +0,0 @@
-# Typically that would be added under one of the following paths:
-# - /etc/bash_completion.d
-# - /usr/local/etc/bash_completion.d
-# - /usr/share/bash-completion/completions
-
-complete -C aws_completer aws
diff --git a/aws_zsh_completer.sh b/aws_zsh_completer.sh
deleted file mode 100644
index c1b2c124477e..000000000000
--- a/aws_zsh_completer.sh
+++ /dev/null
@@ -1,60 +0,0 @@
-# Source this file to activate auto completion for zsh using the bash
-# compatibility helper. Make sure to run `compinit` before, which should be
-# given usually.
-#
-# % source /path/to/zsh_complete.sh
-#
-# Typically that would be called somewhere in your .zshrc.
-#
-# Note, the overwrite of _bash_complete() is to export COMP_LINE and COMP_POINT
-# That is only required for zsh <= edab1d3dbe61da7efe5f1ac0e40444b2ec9b9570
-#
-# https://github.com/zsh-users/zsh/commit/edab1d3dbe61da7efe5f1ac0e40444b2ec9b9570
-#
-# zsh releases prior to that version do not export the required env variables!
-
-autoload -Uz bashcompinit
-bashcompinit -i
-
-_bash_complete() {
- local ret=1
- local -a suf matches
- local -x COMP_POINT COMP_CWORD
- local -a COMP_WORDS COMPREPLY BASH_VERSINFO
- local -x COMP_LINE="$words"
- local -A savejobstates savejobtexts
-
- (( COMP_POINT = 1 + ${#${(j. .)words[1,CURRENT]}} + $#QIPREFIX + $#IPREFIX + $#PREFIX ))
- (( COMP_CWORD = CURRENT - 1))
- COMP_WORDS=( $words )
- BASH_VERSINFO=( 2 05b 0 1 release )
-
- savejobstates=( ${(kv)jobstates} )
- savejobtexts=( ${(kv)jobtexts} )
-
- [[ ${argv[${argv[(I)nospace]:-0}-1]} = -o ]] && suf=( -S '' )
-
- matches=( ${(f)"$(compgen $@ -- ${words[CURRENT]})"} )
-
- if [[ -n $matches ]]; then
- if [[ ${argv[${argv[(I)filenames]:-0}-1]} = -o ]]; then
- compset -P '*/' && matches=( ${matches##*/} )
- compset -S '/*' && matches=( ${matches%%/*} )
- compadd -Q -f "${suf[@]}" -a matches && ret=0
- else
- compadd -Q "${suf[@]}" -a matches && ret=0
- fi
- fi
-
- if (( ret )); then
- if [[ ${argv[${argv[(I)default]:-0}-1]} = -o ]]; then
- _default "${suf[@]}" && ret=0
- elif [[ ${argv[${argv[(I)dirnames]:-0}-1]} = -o ]]; then
- _directories "${suf[@]}" && ret=0
- fi
- fi
-
- return ret
-}
-
-complete -C aws_completer aws