Questions tagged [mouse-pointer]
6 questions
1
vote
1 answer
How to increase x-pointer size
I would like to increase the size of the x-pointer (mouse cursor) in Emacs on plain Xorg (I'm running Emacs 28.2 and EXWM as window manager). The standard X solutions work but don't seem to influence the emacs frame and since I have a HDPI display…

Alex A.
- 11
- 3
0
votes
0 answers
Mouse Avoidance mode Not Working When Set to `proteus`
Execute emacs -q and then evaluate
(custom-set-variables
'(make-pointer-invisible nil)
'(mouse-avoidance-mode 'proteus))
When cursor moves closer to mouse-pointer, an error is raised:
Error running timer mouse-avoidance-fancy: (error "Sequence…

shynur
- 4,065
- 1
- 3
- 23
0
votes
1 answer
Make Emacs not change mouse pointer color and theme
I found the this answer to the question of how to change ones mouse pointer color for when the mouse pointer is hovering over Emacs: https://emacs.stackexchange.com/a/3185/10090
However, this really only seems to work for the current frame and…

Zelphir Kaltstahl
- 375
- 3
- 14
0
votes
1 answer
Undo one specific line in a text file within Emacs
Usually when doing the normal undo it will undo all code changes since you went into insert-mode (for me it's evil-undo).
I was wondering if it were possible to implement a function that will only undo the line your cursor is currently hovering over…

Finbar Cowan
- 1
- 1
0
votes
0 answers
Making mouse pointer invisible (x-pointer-invisible)
I am trying to hide the mouse pointer via:
(setq x-pointer-shape x-pointer-invisible)
(setq x-sensitive-text-pointer-shape x-pointer-invisible)
(setq void-text-area-pointer 'text)
(set-mouse-color (cdr (assoc 'mouse-color (frame-parameters))))
The…

Stefano
- 131
- 7
0
votes
0 answers
How to immediately enable the wait cursor until an operation is finished?
When performing an operation which often takes a few seconds, how can the hourglass mouse pointer be shown immediately using Lisp?
Otherwise, the default behavior is to show the hourglass after some delay (a second by default).

ideasman42
- 8,375
- 1
- 28
- 105