From 0a66dc4a31697edc8d439949adb97047b8f4e67e Mon Sep 17 00:00:00 2001 From: liljencrantz Date: Thu, 17 Jan 2008 08:26:02 +1000 Subject: [PATCH] Correct completions for the function builtin darcs-hash:20080116222602-75c98-c1a48b4a04fe71b25c5e004a282341148a95ab6d.gz --- share/completions/function.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/completions/function.fish b/share/completions/function.fish index 2b9509bc4..e4fe0daf9 100644 --- a/share/completions/function.fish +++ b/share/completions/function.fish @@ -5,7 +5,7 @@ complete -c function -s j -l on-job-exit --description "Make the function a job complete -c function -s p -l on-process-exit --description "Make the function a process exit event handler" -x complete -c function -s s -l on-signal --description "Make the function a signal event handler" -x complete -c function -s v -l on-variable --description "Make the function a variable update event handler" -x -complete -c function -s v -l on-event --description "Make the function a generic event handler" -x +complete -c function -s e -l on-event --description "Make the function a generic event handler" -x complete -c function -s b -l key-binding --description "Allow dash (-) in function name" complete -c function -s a -l argument-names --description "Specify named arguments" complete -c function -s S -l no-scope-shadowing --description "Do not shadow variable scope of calling function"