-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
provided emacs workaround gets emacs stuck #158
Comments
For me the line with |
I had the same issue, but |
I've also triggered this in the past, I believe it's an Emacs bug, which makes Emacs freeze with the message "attempted to shape unibyte text". It also affected other modes such as the Ediff helper window which had a certain piece of text which I never looked into. Anyway, I ran an |
I also encounter this. Emacs freezes whenever I open a helm buffer. |
I found another one: |
on my side this is making emacs 25.1.0.3 to freeze (fedora 24):
|
Hello! I'm afraid I'm experiencing very similar issue. I use spacemacs on Mac: Spacemacs: 0.200.7 The problem looks like it's affecting helm integration (whatever I try For me, it looks like commenting the following fixes the problem:
Unfortunately, within those there are the symbols I'd love to use, but I think they appear in helm buffer, thus, causing the problem... Thank you for your help! |
Had to uncomment 45, 46, 47 on Does anyone know the root cause of this problem? |
FWIW, and for people that are having problems with Helm, I simply disable ligatures altogether in the helm buffers: (add-hook 'helm-major-mode-hook
(lambda ()
(setq auto-composition-mode nil))) |
The ligatures also freezes my Emacs when I enter |
45 crashes eshell for me. |
I had the same for a c++ mode. So I commented out line 43 and now it works properly. @mahaarbo I think this fix may help you. |
The problem for me was
It made emacs lock up whenever I opened the HELM menu |
Freezes in (add-hook 'mu4e-headers-mode-hook
(lambda () (setq-local auto-composition-mode nil))) Happens when I start mu4e and use one of the built-in bookmarks: |
For me, the ligatures workaround breaks (add-hook 'ediff-mode-hook
(lambda () (setq-local auto-composition-mode nil))) |
I had to comment three lines in the provided workaround:
these get emacs stuck on some spacemacs UI elements, e.g. opening a project selection with projectile.
other regexps seem to be working
The text was updated successfully, but these errors were encountered: