sl_liner::cursor

Struct Cursor

Source
pub struct Cursor<'a> {
    pub no_eol: bool,
    /* private fields */
}
Expand description

Cursor (as in the terminal’s cursor) exposes various functions that modify the Buffer (Buffer for new line or for editing history, that’s transparent to Cursor) and maintain the position on the terminal that the actual cursor needs to be drawn.

Fields§

§no_eol: bool

Implementations§

Source§

impl<'a> Cursor<'a>

Source

pub fn new_with_divider(divider: &'a dyn EditorRules) -> Self

Source

pub fn curr_grapheme(&self) -> usize

Source

pub fn insert_around(&mut self, buf: &mut Buffer, right: bool, count: usize)

Source

pub fn move_cursor_to(&mut self, buf: &Buffer, pos: usize)

Moves the cursor to pos. If pos is past the end of the buffer, it will be clamped.

Source

pub fn get_words_and_cursor_position( &self, buf: &Buffer, ) -> (Vec<(usize, usize)>, CursorPosition)

Source

pub fn reset(&mut self, buf: &mut Buffer)

Source

pub fn delete_until_cursor(&mut self, buf: &mut Buffer, start: usize)

Source

pub fn insert_char_after_cursor(&mut self, buf: &mut Buffer, c: char)

Source

pub fn insert_str_after_cursor(&mut self, buf: &mut Buffer, s: &str)

Source

pub fn insert_chars_after_cursor(&mut self, buf: &mut Buffer, cs: &[char])

Source

pub fn delete_before_cursor(&mut self, buf: &mut Buffer)

Source

pub fn delete_after_cursor(&mut self, buf: &mut Buffer)

Source

pub fn delete_all_before_cursor(&mut self, buf: &mut Buffer)

Source

pub fn yank_all_after_cursor(&mut self, buf: &mut Buffer)

Source

pub fn delete_all_after_cursor(&mut self, buf: &mut Buffer)

Source

pub fn yank_until(&mut self, buf: &mut Buffer, position: usize)

Source

pub fn delete_until_silent(&mut self, buf: &mut Buffer, position: usize)

Source

pub fn delete_until(&mut self, buf: &mut Buffer, position: usize)

Source

pub fn yank_until_inclusive(&mut self, buf: &mut Buffer, position: usize)

Source

pub fn delete_until_inclusive(&mut self, buf: &mut Buffer, position: usize)

Source

pub fn move_cursor_left(&mut self, count: usize)

Source

pub fn move_cursor_right(&mut self, buf: &Buffer, count: usize)

Source

pub fn move_cursor_to_end_of_line(&mut self, buf: &Buffer)

Source

pub fn is_at_beginning_of_word_or_line(&self, buf: &Buffer) -> bool

Source

pub fn set_no_eol(&mut self, no_eol: bool)

Source

pub fn is_at_end_of_line(&self, buf: &Buffer) -> bool

Source

pub fn pre_display_adjustment(&mut self, buf: &Buffer)

Trait Implementations§

Source§

impl<'a> Clone for Cursor<'a>

Source§

fn clone(&self) -> Cursor<'a>

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Cursor<'a>

§

impl<'a> !RefUnwindSafe for Cursor<'a>

§

impl<'a> !Send for Cursor<'a>

§

impl<'a> !Sync for Cursor<'a>

§

impl<'a> Unpin for Cursor<'a>

§

impl<'a> !UnwindSafe for Cursor<'a>

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, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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.