You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open large org file, shift to CONTENTS view, scroll through with C-v. After loading spacemacs-dark theme it took me 4 seconds longer over 10 test repetitions using (benchmark-run 10 my-large-org-benchmark-func).
Edit: benchark
(defun benchmark-open-test-file-scroll-bottom ()
(find-file "~/7.4M-real-world-org-file-perf-test-data.org")
(goto-char (point-min))
(org-shifttab 0)
(while (not (eobp))
;; i tested and C-v is 11
(ignore-errors (evil-scroll-down 11)))
(benchmark-run 10 (benchmark-open-test-file-scroll-bottom))
Not sure if this is a priority or what could be done about it, but thought I'd post an issue to see.
The text was updated successfully, but these errors were encountered:
codygman
changed the title
Scrolling large org file takes .4 seconds than vanilla emacs with spacemacs-dark theme
Scrolling large org file takes .4 seconds than vanilla emacs+evil with spacemacs-dark theme
Jan 31, 2019
codygman
changed the title
Scrolling large org file takes .4 seconds than vanilla emacs+evil with spacemacs-dark theme
Scrolling large org file takes significantly longer than vanilla emacs+evil+spacemacs-dark theme
Jan 31, 2019
Hey @codygman 😄 ,
Just to understand you, using emacs + evil takes x seconds to scroll a big org file. While using emacs + evil + spacemacs-dark takes x+4 seconds to do the same?
Test:
Open large org file, shift to CONTENTS view, scroll through with
C-v
. After loading spacemacs-dark theme it took me 4 seconds longer over 10 test repetitions using(benchmark-run 10 my-large-org-benchmark-func)
.Edit: benchark
Not sure if this is a priority or what could be done about it, but thought I'd post an issue to see.
The text was updated successfully, but these errors were encountered: