Function: window-cursor-type

window-cursor-type is a function defined in window.c.

Signature

(window-cursor-type &optional WINDOW)

Documentation

Return the cursor-type of WINDOW.

WINDOW must be a live window and defaults to the selected one.

View in manual

Probably introduced at or before Emacs version 30.1.

Source Code

// Defined in /usr/src/emacs/src/window.c
{
  return decode_live_window (window)->cursor_type;
}