Variable: cursor-intangible-mode

cursor-intangible-mode is a buffer-local variable defined in cursor-sensor.el.gz.

Documentation

Non-nil if Cursor-Intangible mode is enabled.

Use the command cursor-intangible-mode(var)/cursor-intangible-mode(fun) to change this variable.

View in manual

Probably introduced at or before Emacs version 25.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cursor-sensor.el.gz
;;;###autoload
(define-minor-mode cursor-intangible-mode
  "Keep cursor outside of any `cursor-intangible' text property."
  :global nil
  (if cursor-intangible-mode
      (add-hook 'pre-redisplay-functions #'cursor-sensor--move-to-tangible
                nil t)
    (remove-hook 'pre-redisplay-functions #'cursor-sensor--move-to-tangible t)))