Function: org-mouse-remove-match-and-spaces

org-mouse-remove-match-and-spaces is an interactive and byte-compiled function defined in org-mouse.el.gz.

Signature

(org-mouse-remove-match-and-spaces)

Documentation

Remove the match, make just one space around the point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-mouse.el.gz
(defun org-mouse-remove-match-and-spaces ()
  "Remove the match, make just one space around the point."
  (interactive)
  (replace-match "")
  (just-one-space))