1
1
mirror of https://github.com/ellie/atuin.git synced 2024-09-19 17:07:48 +03:00

Search: Allow specifiying the limited of returned entries (#364)

This patch adds a new option to the search command, allowing to limit
the returned results from the database.
This commit is contained in:
Jakob-Niklas See 2022-04-28 19:54:16 +02:00 committed by GitHub
parent 93ab4e7842
commit 9d2e9ea174
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,6 +55,10 @@ pub struct Cmd {
#[clap(long)]
after: Option<String>,
/// How many entries to return at most
#[clap(long)]
limit: Option<i64>,
/// Open interactive search UI
#[clap(long, short)]
interactive: bool,
@ -97,6 +101,7 @@ impl Cmd {
self.exclude_cwd,
self.before,
self.after,
self.limit,
&self.query,
db,
)
@ -589,6 +594,7 @@ async fn run_non_interactive(
exclude_cwd: Option<String>,
before: Option<String>,
after: Option<String>,
limit: Option<i64>,
query: &[String],
db: &mut (impl Database + Send + Sync),
) -> Result<()> {
@ -606,7 +612,7 @@ async fn run_non_interactive(
let results = db
.search(
None,
limit,
settings.search_mode,
settings.filter_mode,
&context,