public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob 5c137e68ac2ea5aec7237d7461b153a97d72a577 648 bytes (raw)
$ git show v1.8.0:contrib/completion/lei-completion.bash	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
 
# Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>

# preliminary bash completion support for lei (Local Email Interface)
# Needs a lot of work, see `lei__complete' in lib/PublicInbox::LEI.pm
_lei() {
	local wordlist="$(lei _complete ${COMP_WORDS[@]})"
	case $wordlist in
	*':'* | *'='* | '//'*) compopt -o nospace ;;
	*) compopt +o nospace ;; # the default
	esac
	wordlist="${wordlist//;/\\\\;}" # escape ';' for ';UIDVALIDITY' and such
	COMPREPLY=($(compgen -W "$wordlist" -- "${COMP_WORDS[COMP_CWORD]}"))
	return 0
}
complete -o default -o bashdefault -F _lei lei

git clone https://public-inbox.org/public-inbox.git
git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git