Variable: windmove-allow-repeated-command-override

windmove-allow-repeated-command-override is a customizable variable defined in windmove.el.gz.

Value

t

Documentation

If non-nil, using windmove commands twice overrides no-other-window.

Normally, the no-other-window window property prevents windmove commands from moving to that window. When this variable is non-nil, invoking the command twice means the second invocation ignores the property.

This variable was added, or its default value changed, in Emacs 31.1.

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/windmove.el.gz
(defcustom windmove-allow-repeated-command-override t
  "If non-nil, using windmove commands twice overrides `no-other-window'.
Normally, the `no-other-window' window property prevents windmove
commands from moving to that window.  When this variable is non-nil,
invoking the command twice means the second invocation ignores the
property."
  :type 'boolean
  :version "31.1")