File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ pub(crate) struct HistoryCompleter<'menu>(&'menu dyn History);
13
13
14
14
// Safe to implement Send since the HistoryCompleter should only be used when
15
15
// updating the menu and that must happen in the same thread
16
- unsafe impl < ' menu > Send for HistoryCompleter < ' menu > { }
16
+ unsafe impl Send for HistoryCompleter < ' _ > { }
17
17
18
18
fn search_unique (
19
19
completer : & HistoryCompleter ,
@@ -30,7 +30,7 @@ fn search_unique(
30
30
. filter ( move |value| seen_matching_command_lines. insert ( value. command_line . clone ( ) ) ) )
31
31
}
32
32
33
- impl < ' menu > Completer for HistoryCompleter < ' menu > {
33
+ impl Completer for HistoryCompleter < ' _ > {
34
34
fn complete ( & mut self , line : & str , pos : usize ) -> Vec < Suggestion > {
35
35
match search_unique ( self , line) {
36
36
Err ( _) => vec ! [ ] ,
Original file line number Diff line number Diff line change @@ -183,8 +183,6 @@ pub trait History: Send {
183
183
/// load a history item by its id
184
184
fn load ( & self , id : HistoryItemId ) -> Result < HistoryItem > ;
185
185
186
- /// retrieves the next unused session id
187
-
188
186
/// count the results of a query
189
187
fn count ( & self , query : SearchQuery ) -> Result < i64 > ;
190
188
/// return the total number of history items
You can’t perform that action at this time.
0 commit comments