From 5308e6820e0c8aac69f6744a88d8fd24e24d900c Mon Sep 17 00:00:00 2001 From: Andreas Guldstrand Date: Wed, 13 Apr 2016 00:33:27 +0200 Subject: Allow searching for tags case insensitively --- sbofind | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbofind b/sbofind index 6233587..0adb1f7 100755 --- a/sbofind +++ b/sbofind @@ -73,7 +73,7 @@ sub perform_search { my ($t_fh, $t_exit) = open_read "$config{SBO_HOME}/repo/TAGS.txt"; unless ($t_exit) { while (my $line = <$t_fh>) { - if ($line =~ /^(\S+):\s.*\Q$search_arg\E/) { + if ($line =~ /^(\S+):\s.*\Q$search_arg\E/i) { push @names, $1; } } -- cgit v1.2.3