Function: edt-toggle-select

edt-toggle-select is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-toggle-select)

Documentation

Toggle to start (or cancel) text selection.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; TOGGLE SELECT
;;;

(defun edt-toggle-select ()
  "Toggle to start (or cancel) text selection."
  (interactive)
  (if edt-select-mode
      (edt-reset)
    (edt-select)))