xahlee / xah-fly-keys

the most efficient keybinding for emacs
http://xahlee.info/emacs/misc/xah-fly-keys.html
484 stars 82 forks source link

Mouse Cursor Shape #119

Closed ItsNilDev closed 3 years ago

ItsNilDev commented 3 years ago

Hey! How can I change mouse cursor's shape when I'm in the insert mode? I want to keep it always square

ghost commented 3 years ago

This should work.

(defun my/insert-box ()
  "Keep cursor as a box in insert mode."
  (modify-all-frames-parameters '((cursor-type . box))))
(add-hook 'xah-fly-insert-mode-activate-hook #'my/insert-box)
ItsNilDev commented 3 years ago

cheers