mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21:25 -08:00
(show-cursor-in-non-selected-windows): New option.
(busy-cursor-delay-seconds): New option.
This commit is contained in:
parent
4ae9a85e97
commit
1d0a3ef433
1 changed files with 10 additions and 0 deletions
|
|
@ -1096,6 +1096,16 @@ itself as a pre-command hook."
|
|||
(set-default symbol value)
|
||||
(setq display-busy-cursor value)))
|
||||
|
||||
(defcustom busy-cursor-delay-seconds 1
|
||||
"*Seconds to wait before displaying a busy-cursor."
|
||||
:tag "Busy-cursor delay"
|
||||
:type 'integer
|
||||
:group 'cursor
|
||||
:get #'(lambda (symbol) busy-cursor-delay)
|
||||
:set #'(lambda (symbol value)
|
||||
(set-default symbol value)
|
||||
(setq busy-cursor-delay value)))
|
||||
|
||||
|
||||
(defcustom show-cursor-in-non-selected-windows t
|
||||
"*Non-nil means show a hollow box cursor in non-selected-windows.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue