aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-12-12 10:14:21 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-12-12 10:14:21 +1300
commit44fa7f22cd75d1a85b71adde9a9b709179c0c955 (patch)
treef7d1e99675a897513fe81d846424d632b9f64326 /bash
parentRemove unused nwatch diff filetyper (diff)
downloaddotfiles-44fa7f22cd75d1a85b71adde9a9b709179c0c955.tar.gz
dotfiles-44fa7f22cd75d1a85b71adde9a9b709179c0c955.zip
Remove .dat from text filename exclusions
The one instance I can find in my regularly worked files is status.dat in Nagios, which is a text file
Diffstat (limited to 'bash')
-rw-r--r--bash/bash_completion.d/_text_filenames.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/bash_completion.d/_text_filenames.bash b/bash/bash_completion.d/_text_filenames.bash
index 577d082a..37684fdf 100644
--- a/bash/bash_completion.d/_text_filenames.bash
+++ b/bash/bash_completion.d/_text_filenames.bash
@@ -66,8 +66,8 @@ _text_filenames() {
# Other known binary extensions
# (I haven't included .com; on UNIX, that's more likely to be
# something I saved from a website and named after the domain)
- *.a|*.dat|*.drv|*.exe|*.o|*.torrent|*.wad|*.rom) ;;
- *.A|*.DAT|*.DRV|*.EXE|*.O|*.TORRENT|*.WAD|*.ROM) ;;
+ *.a|*.drv|*.exe|*.o|*.torrent|*.wad|*.rom) ;;
+ *.A|*.DRV|*.EXE|*.O|*.TORRENT|*.WAD|*.ROM) ;;
# Complete everything else; some of it will still be binary
*) COMPREPLY[${#COMPREPLY[@]}]=$item ;;