eslgastal
Results
2
comments of
eslgastal
Thanks for the explanation. I use non-truncated lines (line wrapping) and this solved the problem for me: ```emacs-lisp (defun my/no-op (&rest args)) (advice-add 'org-noter--set-notes-scroll :override 'my/no-op) ```
Based on the info in this thread, I've implemented the following macro in my config, which seems to work: ```emacs-lisp (require 'cl) (setq my/run-once-after-first-frame-counter 0) (defmacro my/run-once-after-first-frame (&rest body) `(lexical-let*...