summaryrefslogtreecommitdiff
path: root/completions/look
diff options
context:
space:
mode:
Diffstat (limited to 'completions/look')
-rw-r--r--completions/look20
1 files changed, 20 insertions, 0 deletions
diff --git a/completions/look b/completions/look
new file mode 100644
index 00000000..e339958e
--- /dev/null
+++ b/completions/look
@@ -0,0 +1,20 @@
+# look(1) completion
+
+_look()
+{
+ local cur prev words cword
+ _init_completion || return
+
+ if [[ $cword -eq 1 ]]; then
+ COMPREPLY=( $( compgen -W '$(look "$cur" 2>/dev/null)' -- "$cur" ) )
+ fi
+} &&
+complete -F _look -o default look
+
+# Local variables:
+# mode: shell-script
+# sh-basic-offset: 4
+# sh-indent-comment: t
+# indent-tabs-mode: nil
+# End:
+# ex: ts=4 sw=4 et filetype=sh