7696122 / evil-terminal-cursor-changer

:smiling_imp: Chagning cursor by mode for evil on terminal.
81 stars 12 forks source link

In iterm2 I get an error `(void-variable seq)` but a subsequent call makes it work #18

Closed yatesco closed 7 years ago

yatesco commented 7 years ago

The first time I call (evil-terminal-cursor-changer-activate) I get an error stating (void-variable seq). If I invoke it again it works and the cursor does change according to state.

I have tried emacs --debug-init but it doesn't show any stack trace so I am not sure what the next step is?

The way I am invoking it is:

  (unless (display-graphic-p)
      (use-package evil-terminal-cursor-changer
        :ensure t
        :init
        (setq evil-motion-state-cursor 'box)  ; █
        (setq evil-visual-state-cursor 'box)  ; █
        (setq evil-normal-state-cursor 'box)  ; █
        (setq evil-insert-state-cursor 'bar)  ; ⎸
        (setq evil-emacs-state-cursor  'hbar) ; _
        :config
        ;;(etcc-on)
        ))
yatesco commented 7 years ago

Working again since an ELPA refresh.