phil-s
phil-s
I can reproduce with that recipe, and confirm that setting `long-line-threshold` to `nil` and killing and re-opening the status buffer results in the normal behaviour again.
A quick elaboration on that code in case it's helpful to others: ```el (defvar my-ement-auto-sync-timer nil) (defvar my-ement-auto-sync-interval 300 "Number of seconds between calls to `my-ement-auto-sync-sessions'.") (defun my-ement-auto-sync-sessions () "Re-sync...
> I suppose we could add such a minor mode to a future version. Do you think it should be enabled by default? I'm inclined to say yes just because...
It could well be me, or it might depend on the terminal. I know that some terminal emulators do/can support more or less every key sequence Emacs can use, but...
Running `showkey -a` also supports that result in my terminal: I get the same output typing both `RET` and `S-RET`. Somewhere I've seen an article on *exactly* how common terminals...
I suspect `RET` being `^M` is actually the reason, as Ctrl-modified letters are case-insensitive. In your case you're seeing a different escape sequence being sent to disambiguate it (and I...
I haven't implemented that swap, but I have changed the existing `S-RET` to `S-` in #270.
Suggested diff for editing: ```diff diff --git a/ement-room.el b/ement-room.el index 39876fc..d046a61 100644 --- a/ement-room.el +++ b/ement-room.el @@ -1732,11 +1732,9 @@ ement-room-edit-message itself an edit of another event, the original event...
Suggested diff for replying: ```diff diff --git a/ement-lib.el b/ement-lib.el index 9682aa8..95da5bb 100644 --- a/ement-lib.el +++ b/ement-lib.el @@ -1142,7 +1142,8 @@ ement-send-message (when filter (setf content (funcall filter content room))) (when...
The following from `ement-room-compose-send` seems to represent potentially still using an edited event ID in the current v0.13: https://github.com/alphapapa/ement.el/blob/26be559103eb070ea4f31dfa7ac9425235c105a9/ement-room.el#L3786-L3788 The code flow from minibuffer to compose buffer and back to...