7696122 / evil-terminal-cursor-changer

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

Error in post-command-hook (etcc-evil-set-cursor): (void-variable seq) #19

Closed tsandstr closed 3 years ago

tsandstr commented 6 years ago

Config code copied directly from github. This is the result.

Error in post-command-hook (etcc-evil-set-cursor):  (void-variable seq)
Shtucer commented 6 years ago

Set cursor shapes BEFORE loading extension Your config might look like this

(setq evil-motion-state-cursor 'box)  ; █
(unless (display-graphic-p)                                                                                                              
  (require 'evil-terminal-cursor-changer)                                                                                                
  (evil-terminal-cursor-changer-activate))
srustamo commented 5 years ago

Set cursor shapes BEFORE loading extension Your config might look like this

(setq evil-motion-state-cursor 'box)  ; █
(unless (display-graphic-p)                                                                                                              
  (require 'evil-terminal-cursor-changer)                                                                                                
  (evil-terminal-cursor-changer-activate))

Does not help.

io12 commented 5 years ago

Doesn't help for me either

wojtekgalaj commented 5 years ago

This worked for me.

  (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)
        ))
io12 commented 5 years ago

Works for me too, thanks!