Merge pull request #1481 from zed-industries/trigger-search-automatically

Automatically trigger project search to occur when deploying
This commit is contained in:
Julia 2022-08-08 16:04:06 -04:00 committed by GitHub
commit ae8dd1e3fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -477,6 +477,7 @@ impl ProjectSearchView {
search.update(cx, |search, cx| {
if let Some(query) = query {
search.set_query(&query, cx);
search.search(cx);
}
search.focus_query_editor(cx)
});