Open parvizfarnia opened 4 months ago
This is a different problem than I reported. I can cancel the Sys.sleep command with C-c C-c
How do you proceed? You just put the cursor in iESS buffer and then you do C-c C-c ? Because when I do so, I just see C-c C-c being printed in iESS without any effect (= interruption)
To be sure, I checked on several different machines, and each time there is the same problem.
C-c C-c then Enter works for me.
If i hit C-c C-c, it get printed on console but nothing happen. If I hit enter after that it gets interrupted. I am using doomemacs on windows. Emacs version 29-3
I'm experiencing a similar issue. C-c C-c followed by enter does not work for me.
I use corfu for autocompletion and suspect this might be a duplicate of #1226 (see also #1267). I'm applying the temporary workaround suggested in those issue (disabling auto-completion by setting corfu-auto
to nil
) and will report on whether I still experience this problem. Clearly disabling auto-complete is not ideal, but it would at least be good to confirm whether this is the origin of the bug.
This is a quick follow up to confirm that, in my case, setting corfu-auto
to nil
resolves the issue. Could others (esp @jacobkasper since they could not use C-c C-c Enter, like me) confirm whether the same applies for them? If so, this and #1296 might be duplicates of #1226.
Note: A possibly better stopgap than disabling autocompletion with corfu would be to use cape wrappers as suggested by the author of corfu here. I don't have time to try this now, but will report again if I do.
Hello everyone,
My environment:
According to the online documentation: https://ess.r-project.org/Manual/ess.html#Other
However, no matter how many times the user enters
C-C C-c
the current running job/process in R terminal within ESS is not interrupted. It is easy to reproduce:1) Launche a R session via
M-R
2) Then runSys.sleep(10)
3) And right after that try to interrupt before the 10 seconds ofSys.sleep
viaC-c C-c
and you will see that it is not possible.Am I missing something with this new version of Emacs or is it a bug?
Thanks in advance.