We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be1f6fd commit 5401ff1Copy full SHA for 5401ff1
atuin/src/command/client/search.rs
@@ -18,7 +18,7 @@ mod history_list;
18
mod interactive;
19
pub use duration::{format_duration, format_duration_into};
20
21
-#[allow(clippy::struct_excessive_bools)]
+#[allow(clippy::struct_excessive_bools, clippy::struct_field_names)]
22
#[derive(Parser, Debug)]
23
pub struct Cmd {
24
/// Filter search result by directory
atuin/src/command/client/search/interactive.rs
@@ -41,6 +41,7 @@ const RETURN_ORIGINAL: usize = usize::MAX;
41
const RETURN_QUERY: usize = usize::MAX - 1;
42
const COPY_QUERY: usize = usize::MAX - 2;
43
44
+#[allow(clippy::struct_field_names)]
45
struct State {
46
history_count: i64,
47
update_needed: Option<Version>,
0 commit comments