From 60ea3c415a721ed99a254938b28c3e9356357b10 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 2 Dec 2018 22:04:55 +1300 Subject: Add missing source of helper func to man complete --- bash/bash_completion.d/man.bash | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bash') diff --git a/bash/bash_completion.d/man.bash b/bash/bash_completion.d/man.bash index f8616029..50ab852e 100644 --- a/bash/bash_completion.d/man.bash +++ b/bash/bash_completion.d/man.bash @@ -1,3 +1,8 @@ +# Load _completion_ignore_case helper function +if ! declare -F _completion_ignore_case >/dev/null ; then + source "$HOME"/.bash_completion.d/_completion_ignore_case.bash +fi + # Autocompletion for man(1) _man() { -- cgit v1.2.3