Skip to content

Commit

Permalink
search: disable unicode support
Browse files Browse the repository at this point in the history
  • Loading branch information
archseer committed Aug 1, 2021
1 parent 0129550 commit f2ef498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-core/src/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl Searcher {

// Create Regex DFAs for all search directions.
let mut builder = dense::Builder::new();
let builder = builder.case_insensitive(!has_uppercase);
let builder = builder.case_insensitive(!has_uppercase).unicode(false);

let left_fdfa = builder.clone().reverse(true).build(pattern)?;
let left_rdfa = builder
Expand Down

0 comments on commit f2ef498

Please sign in to comment.