Skip to main content

Command

Enum Command 

Source
pub enum Command {
Show 31 variants Move(Dir), MoveLineStart, MoveLineEnd, Tab, ShiftTab, MoveTo(Point), Extend(Dir), ExtendTo(Point), SelectAll, Collapse, InsertAtom(Symbol), InsertText(String), InsertFraction(FracStyle), InsertScript(ScriptSlot), InsertBigOp(Symbol), InsertSqrt, InsertDelimiters { open: char, close: char, }, InsertAccent(Mark), InsertUnderOver(UnderOverSpec), InsertStyled(Variant), InsertMatrix { env: MatrixEnv, rows: usize, cols: usize, }, InsertFragment(DocFragment), DeleteBackward, DeleteForward, MatrixInsertRow(Side), MatrixDeleteRow, MatrixInsertCol(Side), MatrixDeleteCol, ApplyStyle(Variant), Confirm, MenuSelect(usize),
}
Expand description

An editor command.

Variants§

§

Move(Dir)

Move the cursor.

§

MoveLineStart

Move to the line start.

§

MoveLineEnd

Move to the line end.

§

Tab

Move to the next tab stop.

§

ShiftTab

Move to the previous tab stop.

§

MoveTo(Point)

Move to a rendered point.

§

Extend(Dir)

Extend selection by direction.

§

ExtendTo(Point)

Extend selection to a rendered point.

§

SelectAll

Select all content.

§

Collapse

Collapse the selection.

§

InsertAtom(Symbol)

Insert a symbol atom.

§

InsertText(String)

Insert text.

§

InsertFraction(FracStyle)

Insert a fraction.

§

InsertScript(ScriptSlot)

Insert a script slot.

§

InsertBigOp(Symbol)

Insert a big operator with empty lower and upper limit slots.

§

InsertSqrt

Insert a radical with a degree slot and radicand.

§

InsertDelimiters

Insert paired delimiters.

Fields

§open: char

Opening delimiter.

§close: char

Closing delimiter.

§

InsertAccent(Mark)

Insert an accent.

§

InsertUnderOver(UnderOverSpec)

Insert an under over construct.

§

InsertStyled(Variant)

Insert styled content.

§

InsertMatrix

Insert a matrix.

Fields

§env: MatrixEnv

Matrix environment.

§rows: usize

Row count.

§cols: usize

Column count.

§

InsertFragment(DocFragment)

Insert a document fragment.

§

DeleteBackward

Delete backward.

§

DeleteForward

Delete forward.

§

MatrixInsertRow(Side)

Insert a matrix row.

§

MatrixDeleteRow

Delete the current matrix row.

§

MatrixInsertCol(Side)

Insert a matrix column.

§

MatrixDeleteCol

Delete the current matrix column.

§

ApplyStyle(Variant)

Apply a style.

§

Confirm

Commit the highlighted menu row or collapse when no menu is open.

§

MenuSelect(usize)

Pick a visible menu row by index.

Trait Implementations§

Source§

impl Clone for Command

Source§

fn clone(&self) -> Command

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Command

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Command

Source§

fn eq(&self, other: &Command) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Command

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.