Ville Skyttä 369980bf93 Tell *Emacs to indent comments (sh-indent-comment: t).
Also move indentation settings to end of files and expand *Emacs ones to
local variables block to avoid overflowing 80 char lines.
2009-10-01 20:54:51 +03:00

70 lines
1.2 KiB
Bash

# bash completion for screen
have screen &&
_screen_sessions()
{
local pattern
if [ -n "$1" ]; then
pattern=".*$1.*"
else
pattern=".*"
fi
COMPREPLY=( $( command screen -ls | \
sed -ne 's|^['$'\t'']\+\('"$cur"'[0-9]\+\.[^'$'\t'']\+\)'"$pattern"'$|\1|p' ) )
} &&
_screen()
{
local cur prev preprev
COMPREPLY=()
cur=`_get_cword`
prev=${COMP_WORDS[COMP_CWORD-1]}
[ "$COMP_CWORD" -ge 2 ] && preprev=${COMP_WORDS[COMP_CWORD-2]}
case "$preprev" in
-[dD])
_screen_sessions
return 0
;;
esac
case "$prev" in
-[rR])
# list detached
_screen_sessions 'Detached'
return 0
;;
-[dDx])
# list attached
_screen_sessions 'Attached'
return 0
;;
-s)
# shells
COMPREPLY=( $( grep ^${cur:-[^#]} /etc/shells ) )
;;
-c)
_filedir
return 0
;;
esac
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-a -A -c -d -D -e -f -fn -fa -h -i \
-l -ln -ls -list -L -m -O -p -q -r -R -s -S -t -U -v \
-wipe -x -X' -- "$cur" ) )
fi
} &&
complete -F _screen $default screen
# Local variables:
# mode: shell-script
# sh-basic-offset: 8
# sh-indent-comment: t
# indent-tabs-mode: t
# End:
# ex: ts=8 sw=8 noet filetype=sh