Closed NightMachinery closed 2 years ago
You might want to incorporate this, or the package will be very unpleasant for people with other configs:
(defun night/h-vundo-buf-setup (orig-fn &rest args) (let ((vundo-buf (apply orig-fn args))) (with-current-buffer vundo-buf (toggle-truncate-lines 1) (evil-insert-state)) vundo-buf)) (advice-add 'vundo-1 :around #'night/h-vundo-buf-setup)
This report gives no context, what is the problem this solves? I use evil mode and didn't see the need to enter evil-insert-state for e.g.
evil-insert-state
You are correct, it no longer seems needed.
You might want to incorporate this, or the package will be very unpleasant for people with other configs: