Open jrogov opened 1 month ago
Hi, thank you for your feedback.
(another possiblity to solve this is to add delete-char (forward one), which will make it possible to just go to the end of the line and delete chars until done :))
Function delete-char
already implemented in the plugin (see example of config). So, you can use combo of commands Move end of line
+ Delete char
(ctrl+e
+ ctrl+d
).
Or am I missing something?
Ah, my bad, I've been searching for it as "forward delete char" for some reason, thank you!
Then, join-line
would still be a lovely addition to that, if you're considering it :)
Hey there 👋
First of all, thank you very much for such a helpful plugin. It makes it really comfortable to use Obsidian while still taking advantage familiar and convenient shortcuts, just wonderful!
There's one thing I've been missing lately when editing files a lot. It's ability to join adjacent lines, like
join-line
in Emacs does: just delete newline at the end of the current line, strip all whitespaces, and add next line to the end of the current one.Do you think it would be possible to add it? I'd really appreciate it! ❤️
(another possiblity to solve this is to adddelete-char
(forward one), which will make it possible to just go to the end of the line and delete chars until done :))Thank you!