Function: org-mouse-end-headline

org-mouse-end-headline is an interactive and byte-compiled function defined in org-mouse.el.gz.

Signature

(org-mouse-end-headline)

Documentation

Go to the end of current headline (ignoring tags).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-mouse.el.gz
(defun org-mouse-end-headline ()
  "Go to the end of current headline (ignoring tags)."
  (interactive)
  (end-of-line)
  (skip-chars-backward "\t ")
  (when (looking-back ":[A-Za-z]+:" (line-beginning-position))
    (skip-chars-backward ":A-Za-z")
    (skip-chars-backward "\t ")))