pub struct EnterVisualLineMode;Expand description
Enter visual line mode (line-wise selection).
Trait Implementations§
Source§impl Clone for EnterVisualLineMode
impl Clone for EnterVisualLineMode
Source§fn clone(&self) -> EnterVisualLineMode
fn clone(&self) -> EnterVisualLineMode
Returns a duplicate 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 Command for EnterVisualLineMode
impl Command for EnterVisualLineMode
Source§fn description(&self) -> &'static str
fn description(&self) -> &'static str
Get a human-readable description of what this command does.
Source§fn complete(&self, _partial: &str) -> Vec<String>
fn complete(&self, _partial: &str) -> Vec<String>
Get tab-completion candidates for this command’s arguments. Read more
Source§fn priority(&self) -> CommandPriority
fn priority(&self) -> CommandPriority
Registration priority (#545). Read more
Source§impl CommandHandler for EnterVisualLineMode
impl CommandHandler for EnterVisualLineMode
Source§fn execute(
&self,
runtime: &mut SessionRuntime<'_>,
_args: &CommandContext,
) -> CommandResult
fn execute( &self, runtime: &mut SessionRuntime<'_>, _args: &CommandContext, ) -> CommandResult
Execute the command. Read more
Source§impl Debug for EnterVisualLineMode
impl Debug for EnterVisualLineMode
Source§impl Default for EnterVisualLineMode
impl Default for EnterVisualLineMode
Source§fn default() -> EnterVisualLineMode
fn default() -> EnterVisualLineMode
Returns the “default value” for a type. Read more
impl Copy for EnterVisualLineMode
Auto Trait Implementations§
impl Freeze for EnterVisualLineMode
impl RefUnwindSafe for EnterVisualLineMode
impl Send for EnterVisualLineMode
impl Sync for EnterVisualLineMode
impl Unpin for EnterVisualLineMode
impl UnsafeUnpin for EnterVisualLineMode
impl UnwindSafe for EnterVisualLineMode
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