tui-textarea icon indicating copy to clipboard operation
tui-textarea copied to clipboard

make `move_cursor_with_shift` public

Open piscopancer opened this issue 9 months ago • 0 comments

It's impossible to create your own keymapping with selection bcs method responsible for that is not public

Input { key: Key::Right, ctrl: false, alt: true, .. } => {
  self.move_cursor_with_shift(CursorMove::WordForward); // function `move_cursor_with_shift` is private
  false
}

piscopancer avatar Apr 04 '25 14:04 piscopancer