mirror of https://github.com/helix-editor/helix
allow smart case in global search (#781)
parent
9456d5c1a2
commit
432bec10ed
|
@ -43,7 +43,7 @@ use std::{
|
||||||
use once_cell::sync::Lazy;
|
use once_cell::sync::Lazy;
|
||||||
use serde::de::{self, Deserialize, Deserializer};
|
use serde::de::{self, Deserialize, Deserializer};
|
||||||
|
|
||||||
use grep_regex::RegexMatcher;
|
use grep_regex::RegexMatcherBuilder;
|
||||||
use grep_searcher::{sinks, BinaryDetection, SearcherBuilder};
|
use grep_searcher::{sinks, BinaryDetection, SearcherBuilder};
|
||||||
use ignore::{DirEntry, WalkBuilder, WalkState};
|
use ignore::{DirEntry, WalkBuilder, WalkState};
|
||||||
use tokio_stream::wrappers::UnboundedReceiverStream;
|
use tokio_stream::wrappers::UnboundedReceiverStream;
|
||||||
|
@ -1226,6 +1226,7 @@ fn search_selection(cx: &mut Context) {
|
||||||
fn global_search(cx: &mut Context) {
|
fn global_search(cx: &mut Context) {
|
||||||
let (all_matches_sx, all_matches_rx) =
|
let (all_matches_sx, all_matches_rx) =
|
||||||
tokio::sync::mpsc::unbounded_channel::<(usize, PathBuf)>();
|
tokio::sync::mpsc::unbounded_channel::<(usize, PathBuf)>();
|
||||||
|
let smart_case = cx.editor.config.smart_case;
|
||||||
let prompt = ui::regex_prompt(
|
let prompt = ui::regex_prompt(
|
||||||
cx,
|
cx,
|
||||||
"global search:".into(),
|
"global search:".into(),
|
||||||
|
@ -1234,7 +1235,11 @@ fn global_search(cx: &mut Context) {
|
||||||
if event != PromptEvent::Validate {
|
if event != PromptEvent::Validate {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if let Ok(matcher) = RegexMatcher::new_line_matcher(regex.as_str()) {
|
|
||||||
|
if let Ok(matcher) = RegexMatcherBuilder::new()
|
||||||
|
.case_smart(smart_case)
|
||||||
|
.build(regex.as_str())
|
||||||
|
{
|
||||||
let searcher = SearcherBuilder::new()
|
let searcher = SearcherBuilder::new()
|
||||||
.binary_detection(BinaryDetection::quit(b'\x00'))
|
.binary_detection(BinaryDetection::quit(b'\x00'))
|
||||||
.build();
|
.build();
|
||||||
|
|
Loading…
Reference in New Issue