#[non_exhaustive]pub enum CompletionType {
Circular,
List,
Fuzzy,
}
Expand description
Tab completion style
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Circular
Complete the next full match (like in Vim by default)
List
Complete till longest match. When more than one match, list all matches (like in Bash/Readline).
Fuzzy
Complete the match using fuzzy search and selection
(like fzf and plugins)
Currently only available for unix platforms as dependency on
skim->tuikit Compile with --features=fuzzy
to enable
Trait Implementations§
Source§impl Clone for CompletionType
impl Clone for CompletionType
Source§fn clone(&self) -> CompletionType
fn clone(&self) -> CompletionType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CompletionType
impl Debug for CompletionType
Source§impl PartialEq for CompletionType
impl PartialEq for CompletionType
impl Copy for CompletionType
impl Eq for CompletionType
impl StructuralPartialEq for CompletionType
Auto Trait Implementations§
impl Freeze for CompletionType
impl RefUnwindSafe for CompletionType
impl Send for CompletionType
impl Sync for CompletionType
impl Unpin for CompletionType
impl UnwindSafe for CompletionType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more