Add regex highlights in the query input (#25005)

Closes https://github.com/zed-industries/zed/discussions/24994

Release Notes:

- Added regex highlights in the query input
This commit is contained in:
Kirill Bulatov 2025-02-17 11:15:43 +02:00 committed by GitHub
parent 91c99baaf2
commit b5d85b638a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 117 additions and 35 deletions

View file

@ -980,7 +980,9 @@ pub fn new_terminal_pane(
false
})));
let buffer_search_bar = cx.new(|cx| search::BufferSearchBar::new(window, cx));
let buffer_search_bar = cx.new(|cx| {
search::BufferSearchBar::new(Some(project.read(cx).languages().clone()), window, cx)
});
let breadcrumbs = cx.new(|_| Breadcrumbs::new());
pane.toolbar().update(cx, |toolbar, cx| {
toolbar.add_item(buffer_search_bar, window, cx);