aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-daemon/src/components
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2026-04-13 19:53:44 +0100
committerGitHub <noreply@github.com>2026-04-13 19:53:44 +0100
commitb28e2739a0f1b7ef11d878163c5599c3442eacf6 (patch)
tree04de8cb20585836ad989bd8421143963eeef3ba9 /crates/atuin-daemon/src/components
parentfeat: track coding agent shell usage (#3388) (diff)
downloadatuin-b28e2739a0f1b7ef11d878163c5599c3442eacf6.zip
feat: remove agent search from tui (#3397)
This is essentially not a useful place to search agent history Right now, using the CLI is the best way to explore this. We are looking into building another TUI for searching records more widely and in more detail ## Checks - [ ] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [ ] I have checked that there are no existing pull requests for the same thing
Diffstat (limited to 'crates/atuin-daemon/src/components')
-rw-r--r--crates/atuin-daemon/src/components/search.rs9
1 files changed, 1 insertions, 8 deletions
diff --git a/crates/atuin-daemon/src/components/search.rs b/crates/atuin-daemon/src/components/search.rs
index a2e74aa5..9fc87fae 100644
--- a/crates/atuin-daemon/src/components/search.rs
+++ b/crates/atuin-daemon/src/components/search.rs
@@ -304,7 +304,6 @@ impl SearchSvc for SearchGrpcService {
.try_into()
.unwrap_or(FilterMode::Global);
let proto_context = search_req.context;
- let authors = search_req.authors;
debug!(
"search request: query = {}, query_id = {}, filter_mode = {}, context = {:?}",
@@ -333,13 +332,7 @@ impl SearchSvc for SearchGrpcService {
.in_scope(|| async {
let index = index.read().await;
index
- .search(
- &query,
- index_filter,
- &query_context,
- &authors,
- RESULTS_LIMIT,
- )
+ .search(&query, index_filter, &query_context, RESULTS_LIMIT)
.await
})
.await;