Skip to content

Commit

Permalink
Fix case-sensitive searches.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggreer committed Oct 3, 2012
1 parent fd905af commit 8da232a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/controllers/JPAckProcess.m
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ - (void)invokeWithTerm:(NSString*)term path:(NSString*)path searchFolder:(NSStri
if (nocase)
[args addObject:@"--ignore-case"];
else
[args addObject:@"--nosmart-case"];
[args addObject:@"--case-sensitive"];

if (folderPattern)
{
Expand Down

0 comments on commit 8da232a

Please sign in to comment.