Klojer / obsidian-emacs-text-editor

GNU General Public License v3.0
21 stars 4 forks source link

kill word doesn't put word in clipboard #9

Closed notuntoward closed 4 months ago

notuntoward commented 4 months ago

The kill word or backward kill word commands don't put the killed word into the kill ring, unlike in Emacs.

Klojer commented 4 months ago

I believe this functional will not complete without mechanism of kill-ring. But its implementation will radically complicate the plugin. So, I have no plans to add it for now.

See https://github.com/Klojer/obsidian-emacs-text-editor/pull/4

notuntoward commented 4 months ago

Guess I shouldn't have used kill ring in the comment.

These commands also don't put the killed word in the clipboard. That does seem possible, because I can mark a region, run kill region , then yank, and then the just-deleted region gets pasted back in.

Klojer commented 4 months ago

Implemented for commands:

Please try version 0.5.0.

notuntoward commented 4 months ago

Thanks!