2009-05-27 18:28:45 +02:00
|
|
|
# bash completion for aspell
|
|
|
|
|
2011-04-05 00:35:51 +03:00
|
|
|
have aspell || return
|
|
|
|
|
2009-05-27 18:28:45 +02:00
|
|
|
_aspell_dictionary()
|
|
|
|
{
|
2009-10-04 19:42:50 +02:00
|
|
|
local datadir
|
|
|
|
datadir=$( aspell config data-dir 2>/dev/null || echo /usr/lib/aspell )
|
|
|
|
# First, get aliases (dicts dump does not list them)
|
|
|
|
COMPREPLY=( $( command ls $datadir/*.alias 2>/dev/null ) )
|
|
|
|
COMPREPLY=( ${COMPREPLY[@]%.alias} )
|
|
|
|
COMPREPLY=( ${COMPREPLY[@]#$datadir/} )
|
|
|
|
# Then, add the canonical dicts
|
2011-04-06 20:39:21 +03:00
|
|
|
COMPREPLY+=( $( aspell dicts 2>/dev/null ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
COMPREPLY=( $( compgen -W '${COMPREPLY[@]}' -- "$cur" ) )
|
2009-05-27 18:28:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_aspell()
|
|
|
|
{
|
2011-05-01 22:18:40 +03:00
|
|
|
local cur prev words cword split
|
|
|
|
_init_completion -s || return
|
2009-05-27 18:28:45 +02:00
|
|
|
|
2009-12-30 00:39:59 +01:00
|
|
|
case $prev in
|
2009-11-22 11:43:26 +01:00
|
|
|
-c|-p|check|--conf|--personal|--repl|--per-conf)
|
2009-10-04 19:42:50 +02:00
|
|
|
_filedir
|
|
|
|
return 0
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
--conf-dir|--data-dir|--dict-dir|--home-dir|--local-data-dir|--prefix)
|
2009-10-04 19:42:50 +02:00
|
|
|
_filedir -d
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
dump|create|merge)
|
|
|
|
COMPREPLY=( $( compgen -W 'master personal repl' -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--mode)
|
2011-03-03 23:24:21 +02:00
|
|
|
COMPREPLY=( $( compgen -W "$( $1 modes 2>/dev/null | \
|
|
|
|
awk '{ print $1 }' )" -- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--sug-mode)
|
|
|
|
COMPREPLY=( $( compgen -W 'ultra fast normal bad-speller' -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--keymapping)
|
|
|
|
COMPREPLY=( $( compgen -W 'aspell ispell' -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-d|--master)
|
|
|
|
_aspell_dictionary
|
|
|
|
return 0
|
|
|
|
;;
|
2011-03-03 23:25:21 +02:00
|
|
|
--add-filter|--rem-filter)
|
|
|
|
COMPREPLY=( $( compgen -W "$( $1 filters 2>/dev/null | \
|
|
|
|
awk '{ print $1 }' )" -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
;;
|
2009-10-04 19:42:50 +02:00
|
|
|
esac
|
2009-05-27 18:28:45 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
$split && return 0
|
2009-05-27 18:28:45 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
if [[ "$cur" == -* ]]; then
|
2011-05-02 11:41:52 +03:00
|
|
|
COMPREPLY=( $( compgen -W '--conf= --conf-dir= --data-dir= --dict-dir= \
|
|
|
|
--encoding= --add-filter= --rem-filter= --mode= \
|
|
|
|
--add-extra-dicts= --rem-extra-dicts= \
|
|
|
|
--home-dir= --ignore= --ignore-accents \
|
2009-10-04 19:42:50 +02:00
|
|
|
--dont-ignore-accents --ignore-case --dont-ignore-case \
|
2011-05-02 11:41:52 +03:00
|
|
|
--ignore-repl --dont-ignore-repl --jargon --keyboard= \
|
|
|
|
--lang= --language-tag --local-data-dir= --master= \
|
2009-10-04 19:42:50 +02:00
|
|
|
--module --add-module-search-order \
|
2011-05-02 11:41:52 +03:00
|
|
|
--rem-module-search-order --per-conf= --personal= \
|
|
|
|
--prefix= --repl= --run-together --dont-run-together \
|
|
|
|
--run-together-limit= --run-together-min= --save-repl \
|
|
|
|
--dont-save-repl --set-prefix --dont-set-prefix --size= \
|
2009-10-04 19:42:50 +02:00
|
|
|
--spelling --strip-accents --dont-strip-accents \
|
2011-05-02 11:41:52 +03:00
|
|
|
--sug-mode= --add-word-list-path --rem-word-list-path \
|
2009-10-18 22:12:37 +03:00
|
|
|
--backup --dont-backup --reverse --dont-reverse \
|
2011-05-02 11:41:52 +03:00
|
|
|
--time --dont-time --keymapping= --add-email-quote= \
|
|
|
|
--rem-email-quote= --email-margin= --add-tex-command= \
|
|
|
|
--rem-tex-command= --tex-check-comments \
|
2009-10-04 19:42:50 +02:00
|
|
|
--dont-tex-check-comments --add-tex-extension \
|
2011-05-02 11:41:52 +03:00
|
|
|
--rem-tex-extension --add-sgml-check= --rem-sgml-check= \
|
2009-10-04 19:42:50 +02:00
|
|
|
--add-sgml-extension --rem-sgml-extension' -- "$cur" ) )
|
2011-05-02 11:41:52 +03:00
|
|
|
[[ $COMPREPLY == *= ]] && compopt -o nospace
|
2009-10-04 19:42:50 +02:00
|
|
|
else
|
2009-10-18 22:12:37 +03:00
|
|
|
COMPREPLY=( $( compgen -W 'usage help check pipe list \
|
|
|
|
config soundslike filter version dump create merge' -- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
fi
|
2011-04-04 22:14:39 +03:00
|
|
|
} &&
|
2010-11-01 19:26:53 +02:00
|
|
|
complete -F _aspell aspell
|
2009-10-01 20:54:51 +03:00
|
|
|
|
|
|
|
# Local variables:
|
|
|
|
# mode: shell-script
|
2009-10-04 19:42:50 +02:00
|
|
|
# sh-basic-offset: 4
|
2009-10-01 20:54:51 +03:00
|
|
|
# sh-indent-comment: t
|
2009-10-04 19:42:50 +02:00
|
|
|
# indent-tabs-mode: nil
|
2009-10-01 20:54:51 +03:00
|
|
|
# End:
|
2009-10-04 19:42:50 +02:00
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|