Câu trả lời:
Đặt cái này vào tập tin cấu hình emacs của bạn:
;; Set the neo-window-width to the current width of the
;; neotree window, to trick neotree into resetting the
;; width back to the actual window width.
;; Fixes: https://github.com/jaypei/emacs-neotree/issues/262
(eval-after-load "neotree"
'(add-to-list 'window-size-change-functions
(lambda (frame)
(let ((neo-window (neo-global--get-window)))
(unless (null neo-window)
(setq neo-window-width (window-width neo-window)))))))
(setq neo-window-width 20)
mà neotree sẽ mở lại - vì vậy cần có cách thay đổi giá trị theo chiều rộng được sử dụng trước đó, nếu bạn có các khoảng thời gian, độ nghiêng và emacs-lisp.