summaryrefslogtreecommitdiffstats
path: root/extra/source/bash-completion/fixup-sh-script-completions.diff
diff options
context:
space:
mode:
Diffstat (limited to 'extra/source/bash-completion/fixup-sh-script-completions.diff')
-rw-r--r--extra/source/bash-completion/fixup-sh-script-completions.diff31
1 files changed, 14 insertions, 17 deletions
diff --git a/extra/source/bash-completion/fixup-sh-script-completions.diff b/extra/source/bash-completion/fixup-sh-script-completions.diff
index 15bcf1d1c..6f3447b8c 100644
--- a/extra/source/bash-completion/fixup-sh-script-completions.diff
+++ b/extra/source/bash-completion/fixup-sh-script-completions.diff
@@ -1,22 +1,19 @@
-The 'sh' completion file only completes on *.sh files.
-This breaks the expectation (on Slackware, at least) that
-e.g. "sh /etc/rc.d/rc.my<TAB>" will complete to rc.mysql.
-This patch fixes that, but a consequence is that "sh" will
-complete on *any* filename. IMHO, that's not a regression
-at all, since stock bash without bash-completion does that
-already... --rworkman
+The 'sh' completion file only completes on *.sh files. This breaks the
+expectation (on Slackware, at least) that e.g. "sh /etc/rc.d/rc.my<TAB>"
+will complete to rc.mysql. This patch fixes that, but a consequence is that
+"sh" will complete on *any* filename. IMHO, that's not a regression at all,
+since stock bash without bash-completion does that already... --rworkman
Acked-by: volkerdi
-diff -Nur bash-completion-1.3.orig/completions/sh bash-completion-1.3/completions/sh
---- bash-completion-1.3.orig/completions/sh 2011-01-21 03:36:11.000000000 -0600
-+++ bash-completion-1.3/completions/sh 2011-03-12 02:06:00.964938285 -0600
-@@ -28,7 +28,7 @@
- return 0
- fi
-
-- _filedir sh
-+ _filedir
+diff -Nur bash-completion-2.2.orig/completions/sh bash-completion-2.2/completions/sh
+--- bash-completion-2.2.orig/completions/sh 2016-02-09 08:52:44.000000000 -0600
++++ bash-completion-2.2/completions/sh 2016-03-06 00:43:49.744767271 -0600
+@@ -31,6 +31,6 @@
+ [[ $args -eq 1 ]] && ext=sh
+ _filedir $ext
} &&
- complete -F _sh sh
+-complete -F _sh sh
++complete -F _sh
+ # ex: ts=4 sw=4 et filetype=sh