lukertty
Results
3
comments of
lukertty
Hi, maybe we can use this function to get a functions's advices list: ```elisp (defun yf/advice-list (symbol) (let (result) (advice-mapc (lambda (ad props) (push ad result)) symbol) (nreverse result))) ```...
Try this ```elisp (add-hook 'neo-after-create-hook #'(lambda (_) (with-current-buffer (get-buffer neo-buffer-name) (setq truncate-lines t) (setq word-wrap nil) (make-local-variable 'auto-hscroll-mode) (setq auto-hscroll-mode nil)))) ```