mirror of
https://github.com/d99kris/nmail.git
synced 2026-04-26 17:56:00 +03:00
[GH-ISSUE #114] [Bug] Ctrl-E does not open the external editor #100
Labels
No labels
bug
enhancement
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/nmail#100
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @krackout on GitHub (Oct 13, 2022).
Original GitHub issue: https://github.com/d99kris/nmail/issues/114
Originally assigned to: @d99kris on GitHub.
On 3.99 version which I've just updated, Ctrl-E keyboard shortcut does not open the external editor, it moves cursor to the end of line.
It's a nice feature, Ctrl-A moves cursor to start of line, Ctrl-E to end. I don't know if the former existed in previous versions, I composed longer e-mails with external editor (vim), so I didn't edit a lot inside nmail.
But certainly the ability to open an external editor, even with a different keyboard shortcut, should return if possible.
@d99kris commented on GitHub (Oct 13, 2022):
Ah that's a bug, I was intending to respect original config while giving ctrl-e a new default function.
As a workaround you can manually edit ui.conf and remove
key_ext_editoror set it too KEY_CTRLW, either will set it to its new default. Assuming you're ok to use ctrl-w for external editor.OR you can change
key_end_lineto some unused key.@Kabouik commented on GitHub (Oct 13, 2022):
Those are new keybinds from nmail latest versions that solved an old issue I had opened, the old C-e to open EDITOR now has been moved to C-w.
On 2022-10-13 15:13 krackout @.***> wrote:
@krackout commented on GitHub (Oct 13, 2022):
Ok, thank you both, I'm covered.