pub struct DedentSelection;Expand description
Dedent selection (< in visual mode).
Decreases indentation of selected lines. Returns to Normal mode after execution.
Trait Implementations§
Source§impl Clone for DedentSelection
impl Clone for DedentSelection
Source§fn clone(&self) -> DedentSelection
fn clone(&self) -> DedentSelection
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 DedentSelection
impl Command for DedentSelection
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 DedentSelection
impl CommandHandler for DedentSelection
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 DedentSelection
impl Debug for DedentSelection
Source§impl Default for DedentSelection
impl Default for DedentSelection
Source§fn default() -> DedentSelection
fn default() -> DedentSelection
Returns the “default value” for a type. Read more
impl Copy for DedentSelection
Auto Trait Implementations§
impl Freeze for DedentSelection
impl RefUnwindSafe for DedentSelection
impl Send for DedentSelection
impl Sync for DedentSelection
impl Unpin for DedentSelection
impl UnsafeUnpin for DedentSelection
impl UnwindSafe for DedentSelection
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