diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-03-25 14:58:12 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-03-25 14:58:12 -0400 |
commit | 0f053be1227570121107da6c13bf440baef39b23 (patch) | |
tree | 5823e5335141aad00f927c62a8230806ac1a98a2 /bash_completion.in | |
parent | ae6f374c210835546f8f57b41e5764d87fca3fcb (diff) | |
download | devtools32-0f053be1227570121107da6c13bf440baef39b23.tar.xz |
Add '#!/hint/bash' headers to non-executable bash files.
This provides a cross-editor hint that the syntax of the file is Bash.
Diffstat (limited to 'bash_completion.in')
-rw-r--r-- | bash_completion.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bash_completion.in b/bash_completion.in index dd140fc..10dad36 100644 --- a/bash_completion.in +++ b/bash_completion.in @@ -1,3 +1,5 @@ +#!/hint/bash + _devtools_compgen() { local i r COMPREPLY=($(compgen -W '$*' -- "$cur")) |