summaryrefslogtreecommitdiff
path: root/completions/valgrind
diff options
context:
space:
mode:
Diffstat (limited to 'completions/valgrind')
-rw-r--r--completions/valgrind6
1 files changed, 6 insertions, 0 deletions
diff --git a/completions/valgrind b/completions/valgrind
index 1930c21b..08950998 100644
--- a/completions/valgrind
+++ b/completions/valgrind
@@ -42,6 +42,11 @@ _valgrind()
COMPREPLY=( $( compgen -W 'lax-ioctls enable-outer' -- "$cur" ) )
return
;;
+ --soname-synonyms)
+ COMPREPLY=( $( compgen -W 'somalloc' -S = -- "$cur" ) )
+ [[ $COMPREPLY == *= ]] && compopt -o nospace
+ return
+ ;;
--kernel-variant)
COMPREPLY=( $( compgen -W 'bproc' -- "$cur" ) )
return
@@ -72,6 +77,7 @@ _valgrind()
return
;;
\<command\>)
+ compopt -o filenames
COMPREPLY=( $( compgen -c -- "$cur" ) )
return
;;