strace: Don't append space for -e *= completions.

This commit is contained in:
Ville Skyttä 2011-05-26 00:34:01 +03:00
parent 8641a8c817
commit 05f3bbec85

View File

@ -5,7 +5,7 @@ have strace || return
_strace()
{
local cur prev words cword
_init_completion || return
_init_completion -n = || return
# check if we're still completing strace
local offset=0 i
@ -58,6 +58,7 @@ _strace()
;;
esac
else
compopt -o nospace
COMPREPLY=( $( compgen -S"=" -W 'trace abbrev verbose raw
signal read write' -- "$cur" ) )
fi