Function: edt-split-window

edt-split-window is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-split-window)

Documentation

Split current window and place cursor in the new window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; SPLIT WINDOW
;;;

(defun edt-split-window ()
  "Split current window and place cursor in the new window."
  (interactive)
  (split-window)
  (other-window 1))