Skip to content

Commit 9adbfe5

Browse files
authored
Merge pull request #1661 from sakurawald/fix-vi-cursor-type-for-vi-operator
fix: adjust the cursor-type to underline for vi-operator + the color of vi-insert cursor now respects the default cursor color
2 parents 224164b + 8aa56c6 commit 9adbfe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/vi-mode/states.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
(define-state insert () ()
7171
(:default-initargs
7272
:name "INSERT"
73-
:cursor-color "IndianRed"
7473
:cursor-type :bar
7574
:modeline-color 'state-modeline-aqua
7675
:keymaps (list *insert-keymap*)))
@@ -89,6 +88,7 @@
8988

9089
(define-state operator (normal) ()
9190
(:default-initargs
91+
:cursor-type :underline
9292
:keymaps (list *operator-keymap* *normal-keymap*)))
9393

9494
;;

0 commit comments

Comments
 (0)