-
Notifications
You must be signed in to change notification settings - Fork 12
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
Emacs gets incredibly slow when rainbow-delimiters are enabled #43
Comments
Any details? Without them, all I can do is to close the ticket as WORKSFORME. |
I just realized that I could no longer scroll more that 10lines before the cursor stopped and got stuck only to appear further down the buffer. Now this has only been happening in clojure mode where I have rain-bow delimiters enabled so I decided to deactivate them for a bit and the speed was okay. I am using the latest emacs (installed using |
Can't reproduce on |
Yes, I just cleaned out all my packages in |
Can you show the source file?
Sounds like
What exactly do you mean by "scroll"? Using the scroll-bar? Using |
Just to make sure: you got rainbow-delimiters from MELPA, right? The version on Marmalade is a very old version with third-party modifications. |
As I said, I can't reproduce it on
That's 0.1s total spent in rainbow-delimiters when scrolling from the beginning to the end by holding down the down arrow key. Can you post the problematic source code? Can you post the list of enabled minor modes as shown by (let ((vars nil))
(mapatoms
(lambda (symbol)
(when (and
(string-match-p (rx string-start (or "font-lock-" "jit-lock-"))
(symbol-name symbol))
(boundp symbol))
(push (cons symbol (symbol-value symbol)) vars))))
(sort vars (lambda (l r)
(string-lessp (car l) (car r))))) |
Ping. |
Development has moved to https://github.com/Fanael/rainbow-delimiters. If the issue still persists, please report it there. |
No description provided.
The text was updated successfully, but these errors were encountered: