2016-06-30 22:26:57 +02:00
|
|
|
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
|
2011-04-25 15:37:00 +02:00
|
|
|
|
|
|
|
Acked-by: volkerdi
|
|
|
|
|
2020-07-25 20:11:22 +02:00
|
|
|
--- ./completions/sh.orig 2020-07-25 12:37:24.175001592 -0500
|
|
|
|
+++ ./completions/sh 2020-07-25 12:38:34.061003155 -0500
|
2016-06-30 22:26:57 +02:00
|
|
|
@@ -31,6 +31,6 @@
|
2020-07-25 20:11:22 +02:00
|
|
|
((args == 1)) && ext="sh"
|
2016-06-30 22:26:57 +02:00
|
|
|
_filedir $ext
|
2011-04-25 15:37:00 +02:00
|
|
|
} &&
|
2020-07-25 20:11:22 +02:00
|
|
|
- complete -F _sh sh
|
|
|
|
+ complete -F _sh
|
|
|
|
|
|
|
|
# ex: filetype=sh
|