ulyssa / modalkit

A Rust library for building modal editing applications
Apache License 2.0
49 stars 5 forks source link

Want buffer for editing text #7

Closed ulyssa closed 2 years ago

ulyssa commented 2 years ago

I'd like a component that holds onto, tracks, and applies edits to the EditRope added in #5. It should be capable of handling the following EditAction variants for now: Delete, Yank, Replace, Join, and Motion. It should also take care of undo/redo actions, and be aware of multiple cursors so that it can handle Vim's I/A/c keys while making blockwise visual selections.