1 ;;; org-mouse.el --- Better mouse support for org-mode
3 ;; Copyright (C) 2006-2011 Free Software Foundation
5 ;; Author: Piotr Zielinski <piotr dot zielinski at gmail dot com>
6 ;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27 ;; Org-mouse provides mouse support for org-mode.
31 ;; Org-mouse implements the following features:
32 ;; * following links with the left mouse button (in Emacs 22)
33 ;; * subtree expansion/collapse (org-cycle) with the left mouse button
34 ;; * several context menus on the right mouse button:
41 ;; * promoting/demoting/moving subtrees with mouse-3
42 ;; + if the drag starts and ends in the same line then promote/demote
43 ;; + otherwise move the subtree
48 ;; To use this package, put the following line in your .emacs:
50 ;; (require 'org-mouse)
54 ;; + deal with folding / unfolding issues
56 ;; TODO (This list is only theoretical, if you'd like to have some
57 ;; feature implemented or a bug fix please send me an email, even if
58 ;; something similar appears in the list below. This will help me get
59 ;; the priorities right.):
61 ;; + org-store-link, insert link
63 ;; + occur with the current word/tag (same menu item)
64 ;; + ctrl-c ctrl-c, for example, renumber the current list
67 ;; Please email the maintainer with new feature suggestions / bugs
71 ;; Since version 5.10: Changes are listed in the general org-mode docs.
73 ;; Version 5.09;; + Version number synchronization with Org-mode.
76 ;; + made compatible with org-mode 4.70 (thanks to Carsten for the patch)
79 ;; + minor changes to the table menu
82 ;; + preliminary support for tables and calculation marks
83 ;; + context menu support for org-agenda-undo & org-sort-entries
86 ;; + handles undo support for the agenda buffer (requires org-mode >=4.58)
89 ;; + selected text activates its context menu
90 ;; + shift-middleclick or right-drag inserts the text from the clipboard in the form of a link
93 ;; + the new "TODO Status" submenu replaces the "Cycle TODO" menu item
94 ;; + the TODO menu can now list occurrences of a specific TODO keyword
95 ;; + #+STARTUP line is now recognized
98 ;; + added support for dragging URLs to the org-buffer
101 ;; + added support for agenda blocks
104 ;; + toggle checkboxes with a single click
107 ;; + added support for checkboxes
110 ;; + org-mode now works with the Agenda buffer as well
113 ;; + added a menu option that converts plain list items to outline items
116 ;; + "Insert Heading" now inserts a sibling heading if the point is
117 ;; on "***" and a child heading otherwise
120 ;; + compatible with Emacs 21
121 ;; + custom agenda commands added to the main menu
122 ;; + moving trees should now work between windows in the same frame
125 ;; + fixed org-mouse-at-link (thanks to Carsten)
126 ;; + removed [follow-link] bindings
129 ;; + added a menu option to remove highlights
130 ;; + compatible with org-mode 4.21 now
133 ;; + trees can be moved/promoted/demoted by dragging with the right
134 ;; mouse button (mouse-3)
135 ;; + small changes in the above function
137 ;; Versions 0.01 -- 0.07: (I don't remember)
141 (eval-when-compile (require 'cl
))
144 (defvar org-agenda-allow-remote-undo
)
145 (defvar org-agenda-undo-list
)
146 (defvar org-agenda-custom-commands
)
147 (declare-function org-agenda-change-all-lines
"org-agenda"
148 (newhead hdmarker
&optional fixface just-this
))
149 (declare-function org-verify-change-for-undo
"org-agenda" (l1 l2
))
150 (declare-function org-apply-on-list
"org-list" (function init-value
&rest args
))
151 (declare-function org-agenda-earlier
"org-agenda" (arg))
152 (declare-function org-agenda-later
"org-agenda" (arg))
154 (defvar org-mouse-plain-list-regexp
"\\([ \t]*\\)\\([-+*]\\|[0-9]+[.)]\\) "
155 "Regular expression that matches a plain list.")
156 (defvar org-mouse-direct t
157 "Internal variable indicating whether the current action is direct.
159 If t, then the current action has been invoked directly through the buffer
160 it is intended to operate on. If nil, then the action has been invoked
161 indirectly, for example, through the agenda buffer.")
163 (defgroup org-mouse nil
164 "Mouse support for org-mode."
168 (defcustom org-mouse-punctuation
":"
169 "Punctuation used when inserting text by drag and drop."
173 (defcustom org-mouse-features
174 '(context-menu yank-link activate-stars activate-bullets activate-checkboxes
)
175 "The features of org-mouse that should be activated.
176 Changing this variable requires a restart of Emacs to get activated."
178 :type
'(set :greedy t
179 (const :tag
"Mouse-3 shows context menu" context-menu
)
180 (const :tag
"C-mouse-1 and mouse-3 move trees" move-tree
)
181 (const :tag
"S-mouse-2 and drag-mouse-3 yank link" yank-link
)
182 (const :tag
"Activate headline stars" activate-stars
)
183 (const :tag
"Activate item bullets" activate-bullets
)
184 (const :tag
"Activate checkboxes" activate-checkboxes
)))
186 (defun org-mouse-re-search-line (regexp)
187 "Search the current line for a given regular expression."
189 (re-search-forward regexp
(point-at-eol) t
))
191 (defun org-mouse-end-headline ()
192 "Go to the end of current headline (ignoring tags)."
195 (skip-chars-backward "\t ")
196 (when (org-looking-back ":[A-Za-z]+:")
197 (skip-chars-backward ":A-Za-z")
198 (skip-chars-backward "\t ")))
200 (defvar org-mouse-context-menu-function nil
201 "Function to create the context menu.
202 The value of this variable is the function invoked by
203 `org-mouse-context-menu' as the context menu.")
204 (make-variable-buffer-local 'org-mouse-context-menu-function
)
206 (defun org-mouse-show-context-menu (event prefix
)
207 "Invoke the context menu.
209 If the value of `org-mouse-context-menu-function' is a function, then
210 this function is called. Otherwise, the current major mode menu is used."
211 (interactive "@e \nP")
212 (if (and (= (event-click-count event
) 1)
213 (or (not mark-active
)
214 (sit-for (/ double-click-time
1000.0))))
216 (select-window (posn-window (event-start event
)))
217 (when (not (org-mouse-mark-active))
218 (goto-char (posn-point (event-start event
)))
219 (when (not (eolp)) (save-excursion (run-hooks 'post-command-hook
)))
220 (let ((redisplay-dont-pause t
))
222 (if (functionp org-mouse-context-menu-function
)
223 (funcall org-mouse-context-menu-function event
)
224 (if (fboundp 'mouse-menu-major-mode-map
)
225 (popup-menu (mouse-menu-major-mode-map) event prefix
)
226 (org-no-warnings ; don't warn about fallback, obsolete since 23.1
227 (mouse-major-mode-menu event prefix
)))))
228 (setq this-command
'mouse-save-then-kill
)
229 (mouse-save-then-kill event
)))
231 (defun org-mouse-line-position ()
232 "Return `:beginning' or `:middle' or `:end', depending on the point position.
234 If the point is at the end of the line, return `:end'.
235 If the point is separated from the beginning of the line only by white
236 space and *'s (`org-mouse-bolp'), return `:beginning'. Otherwise,
240 ((org-mouse-bolp) :beginning
)
243 (defun org-mouse-empty-line ()
244 "Return non-nil iff the line contains only white space."
245 (save-excursion (beginning-of-line) (looking-at "[ \t]*$")))
247 (defun org-mouse-next-heading ()
248 "Go to the next heading.
249 If there is none, ensure that the point is at the beginning of an empty line."
250 (unless (outline-next-heading)
252 (unless (org-mouse-empty-line)
256 (defun org-mouse-insert-heading ()
257 "Insert a new heading, as `org-insert-heading'.
259 If the point is at the :beginning (`org-mouse-line-position') of the line,
260 insert the new heading before the current line. Otherwise, insert it
261 after the current heading."
263 (case (org-mouse-line-position)
264 (:beginning
(beginning-of-line)
265 (org-insert-heading))
266 (t (org-mouse-next-heading)
267 (org-insert-heading))))
269 (defun org-mouse-timestamp-today (&optional shift units
)
270 "Change the timestamp into SHIFT UNITS in the future.
272 For the acceptable UNITS, see `org-timestamp-change'."
274 (flet ((org-read-date (&rest rest
) (current-time)))
275 (org-time-stamp nil
))
277 (org-timestamp-change shift units
)))
279 (defun org-mouse-keyword-menu (keywords function
&optional selected itemformat
)
282 Returns a menu fragment consisting of KEYWORDS. When a keyword
283 is selected by the user, FUNCTION is called with the selected
284 keyword as the only argument.
286 If SELECTED is nil, then all items are normal menu items. If
287 SELECTED is a function, then each item is a checkbox, which is
288 enabled for a given keyword iff (funcall SELECTED keyword) return
289 non-nil. If SELECTED is neither nil nor a function, then the
290 items are radio buttons. A radio button is enabled for the
291 keyword `equal' to SELECTED.
293 ITEMFORMAT governs formatting of the elements of KEYWORDS. If it
294 is a function, it is invoked with the keyword as the only
295 argument. If it is a string, it is interpreted as the format
296 string to (format ITEMFORMAT keyword). If it is neither a string
297 nor a function, elements of KEYWORDS are used directly."
301 ((functionp ,itemformat
) (funcall ,itemformat keyword
))
302 ((stringp ,itemformat
) (format ,itemformat keyword
))
304 (list 'funcall
,function keyword
)
307 ((functionp ,selected
) 'toggle
)
309 :selected
(if (functionp ,selected
)
310 (and (funcall ,selected keyword
) t
)
311 (equal ,selected keyword
))))
314 (defun org-mouse-remove-match-and-spaces ()
315 "Remove the match, make just one space around the point."
321 (defun org-mouse-replace-match-and-surround (newtext &optional fixedcase
322 literal string subexp
)
323 "The same as `replace-match', but surrounds the replacement with spaces."
324 (apply 'replace-match rest
)
326 (goto-char (match-beginning (or subexp
0)))
328 (goto-char (match-end (or subexp
0)))
332 (defun org-mouse-keyword-replace-menu (keywords &optional group itemformat
336 Returns a menu fragment consisting of KEYWORDS. When a keyword
337 is selected, group GROUP of the current match is replaced by the
338 keyword. The method ensures that both ends of the replacement
339 are separated from the rest of the text in the buffer by
340 individual spaces (unless NOSURROUND is non-nil).
342 The final entry of the menu is always \"None\", which removes the
345 ITEMFORMAT governs formatting of the elements of KEYWORDS. If it
346 is a function, it is invoked with the keyword as the only
347 argument. If it is a string, it is interpreted as the format
348 string to (format ITEMFORMAT keyword). If it is neither a string
349 nor a function, elements of KEYWORDS are used directly."
350 (setq group
(or group
0))
351 (let ((replace (org-mouse-match-closure
352 (if nosurround
'replace-match
353 'org-mouse-replace-match-and-surround
))))
355 (org-mouse-keyword-menu
357 `(lambda (keyword) (funcall ,replace keyword t t nil
,group
))
360 `(["None" org-mouse-remove-match-and-spaces
362 :selected
,(not (member (match-string group
) keywords
))]))))
364 (defun org-mouse-show-headlines ()
365 "Change the visibility of the current org buffer to only show headlines."
367 (let ((this-command 'org-cycle
)
368 (last-command 'org-cycle
)
369 (org-cycle-global-status nil
))
373 (defun org-mouse-show-overview ()
374 "Change visibility of current org buffer to first-level headlines only."
376 (let ((org-cycle-global-status nil
))
379 (defun org-mouse-set-priority (priority)
380 "Set the priority of the current headline to PRIORITY."
381 (flet ((read-char-exclusive () priority
))
384 (defvar org-mouse-priority-regexp
"\\[#\\([A-Z]\\)\\]"
385 "Regular expression matching the priority indicator.
386 Differs from `org-priority-regexp' in that it doesn't contain the
389 (defun org-mouse-get-priority (&optional default
)
390 "Return the priority of the current headline.
391 DEFAULT is returned if no priority is given in the headline."
393 (if (org-mouse-re-search-line org-mouse-priority-regexp
)
395 (when default
(char-to-string org-default-priority
)))))
397 ;; (defun org-mouse-at-link ()
398 ;; (and (eq (get-text-property (point) 'face) 'org-link)
400 ;; (goto-char (previous-single-property-change (point) 'face))
401 ;; (or (looking-at org-bracket-link-regexp)
402 ;; (looking-at org-angle-link-re)
403 ;; (looking-at org-plain-link-re)))))
406 (defun org-mouse-delete-timestamp ()
407 "Deletes the current timestamp as well as the preceding keyword.
408 SCHEDULED: or DEADLINE: or ANYTHINGLIKETHIS:"
409 (when (or (org-at-date-range-p) (org-at-timestamp-p))
410 (replace-match "") ; delete the timestamp
411 (skip-chars-backward " :A-Z")
412 (when (looking-at " *[A-Z][A-Z]+:")
413 (replace-match ""))))
415 (defun org-mouse-looking-at (regexp skipchars
&optional movechars
)
417 (let ((point (point)))
418 (if (looking-at regexp
) t
419 (skip-chars-backward skipchars
)
420 (forward-char (or movechars
0))
421 (when (looking-at regexp
)
422 (> (match-end 0) point
))))))
424 (defun org-mouse-priority-list ()
425 (loop for priority from ?A to org-lowest-priority
426 collect
(char-to-string priority
)))
428 (defun org-mouse-todo-menu (state)
429 "Create the menu with TODO keywords."
431 (let ((kwds org-todo-keywords-1
))
432 (org-mouse-keyword-menu
434 `(lambda (kwd) (org-todo kwd
))
435 (lambda (kwd) (equal state kwd
))))))
437 (defun org-mouse-tag-menu () ;todo
438 "Create the tags menu."
440 (let ((tags (org-get-tags)))
441 (org-mouse-keyword-menu
442 (sort (mapcar 'car
(org-get-buffer-tags)) 'string-lessp
)
445 (sort (if (member tag
(quote ,tags
))
446 (delete tag
(quote ,tags
))
447 (cons tag
(quote ,tags
)))
449 `(lambda (tag) (member tag
(quote ,tags
)))
452 ["Align Tags Here" (org-set-tags nil t
) t
]
453 ["Align Tags in Buffer" (org-set-tags t t
) t
]
454 ["Set Tags ..." (org-set-tags) t
])))
457 (defun org-mouse-set-tags (tags)
459 ;; remove existing tags first
461 (when (org-mouse-re-search-line ":\\(\\([A-Za-z_]+:\\)+\\)")
464 ;; set new tags if any
467 (insert " :" (mapconcat 'identity tags
":") ":")
468 (org-set-tags nil t
))))
470 (defun org-mouse-insert-checkbox ()
473 (goto-char (match-end 0))
474 (unless (org-at-item-checkbox-p)
475 (delete-horizontal-space)
478 (defun org-mouse-agenda-type (type)
482 ('tags-tree
"Tags tree: ")
483 ('todo-tree
"TODO tree: ")
484 ('occur-tree
"Occur tree: ")
485 (t "Agenda command ???")))
488 (defun org-mouse-list-options-menu (alloptions &optional function
)
489 (let ((options (save-match-data
490 (split-string (match-string-no-properties 1)))))
492 (loop for name in alloptions
498 (sort (if (member ',name
',options
)
499 (delete ',name
',options
)
500 (cons ',name
',options
))
504 (when (functionp ',function
) (funcall ',function
)))
506 :selected
(and (member name options
) t
)))))
508 (defun org-mouse-clip-text (text maxlength
)
509 (if (> (length text
) maxlength
)
510 (concat (substring text
0 (- maxlength
3)) "...")
513 (defun org-mouse-popup-global-menu ()
516 ["Show Overview" org-mouse-show-overview t
]
517 ["Show Headlines" org-mouse-show-headlines t
]
518 ["Show All" show-all t
]
519 ["Remove Highlights" org-remove-occur-highlights
520 :visible org-occur-highlights
]
523 (if (functionp 'org-check-deadlines-and-todos
)
524 (org-check-deadlines-and-todos org-deadline-warning-days
)
525 (org-check-deadlines org-deadline-warning-days
)) t
]
526 ["Check TODOs" org-show-todo-tree t
]
528 ,@(org-mouse-keyword-menu
529 (sort (mapcar 'car
(org-get-buffer-tags)) 'string-lessp
)
530 #'(lambda (tag) (org-tags-sparse-tree nil tag
)))
532 ["Custom Tag ..." org-tags-sparse-tree t
])
533 ["Check Phrase ..." org-occur
]
535 ["Display Agenda" org-agenda-list t
]
536 ["Display Timeline" org-timeline t
]
537 ["Display TODO List" org-todo-list t
]
539 ,@(org-mouse-keyword-menu
540 (sort (mapcar 'car
(org-get-buffer-tags)) 'string-lessp
)
541 #'(lambda (tag) (org-tags-view nil tag
)))
543 ["Custom Tag ..." org-tags-view t
])
544 ["Display Calendar" org-goto-calendar t
]
546 ,@(org-mouse-keyword-menu
547 (mapcar 'car org-agenda-custom-commands
)
549 (eval `(flet ((read-char-exclusive () (string-to-char ,key
)))
553 (let ((entry (assoc key org-agenda-custom-commands
)))
556 ((stringp (nth 1 entry
)) (nth 1 entry
))
557 ((stringp (nth 2 entry
))
558 (concat (org-mouse-agenda-type (nth 1 entry
))
560 (t "Agenda Command '%s'"))
563 ["Delete Blank Lines" delete-blank-lines
564 :visible
(org-mouse-empty-line)]
565 ["Insert Checkbox" org-mouse-insert-checkbox
566 :visible
(and (org-at-item-p) (not (org-at-item-checkbox-p)))]
568 (org-mouse-for-each-item 'org-mouse-insert-checkbox
)
569 :visible
(and (org-at-item-p) (not (org-at-item-checkbox-p)))]
570 ["Plain List to Outline" org-mouse-transform-to-outline
571 :visible
(org-at-item-p)])))
574 (defun org-mouse-get-context (contextlist context
)
575 (let ((contextdata (assq context contextlist
)))
578 (goto-char (second contextdata
))
579 (re-search-forward ".*" (third contextdata
))))))
581 (defun org-mouse-for-each-item (funct)
582 ;; Functions called by `org-apply-on-list' need an argument
583 (let ((wrap-fun (lambda (c) (funcall funct
))))
584 (when (ignore-errors (goto-char (org-in-item-p)))
585 (save-excursion (org-apply-on-list wrap-fun nil
)))))
587 (defun org-mouse-bolp ()
588 "Return true if there only spaces, tabs, and '*' before point.
589 This means, between the beginning of line and the point."
591 (skip-chars-backward " \t*") (bolp)))
593 (defun org-mouse-insert-item (text)
594 (case (org-mouse-line-position)
595 (:beginning
; insert before
597 (looking-at "[ \t]*")
599 (org-indent-to-column (- (match-end 0) (match-beginning 0)))
602 (:middle
; insert after
608 (:end
; insert text here
609 (skip-chars-backward " \t")
610 (kill-region (point) (point-at-eol))
611 (unless (org-looking-back org-mouse-punctuation
)
612 (insert (concat org-mouse-punctuation
" ")))))
617 (defadvice dnd-insert-text
(around org-mouse-dnd-insert-text activate
)
619 (org-mouse-insert-item text
)
622 (defadvice dnd-open-file
(around org-mouse-dnd-open-file activate
)
624 (org-mouse-insert-item uri
)
627 (defun org-mouse-match-closure (function)
628 (let ((match (match-data t
)))
629 `(lambda (&rest rest
)
631 (set-match-data ',match
)
632 (apply ',function rest
)))))
634 (defun org-mouse-match-todo-keyword ()
636 (org-back-to-heading)
637 (if (looking-at org-outline-regexp
) (goto-char (match-end 0)))
638 (or (looking-at (concat " +" org-todo-regexp
" *"))
639 (looking-at " \\( *\\)"))))
641 (defun org-mouse-yank-link (click)
643 ;; Give temporary modes such as isearch a chance to turn off.
644 (run-hooks 'mouse-leave-buffer-hook
)
645 (mouse-set-point click
)
646 (setq mouse-selection-click-count
0)
647 (delete-horizontal-space)
648 (insert-for-yank (concat " [[" (current-kill 0) "]] ")))
650 (defun org-mouse-context-menu (&optional event
)
651 (let ((stamp-prefixes (list org-deadline-string org-scheduled-string
))
652 (contextlist (org-context)))
653 (flet ((get-context (context) (org-mouse-get-context contextlist context
)))
655 ((org-mouse-mark-active)
656 (let ((region-string (buffer-substring (region-beginning) (region-end))))
659 ["Sparse Tree" (org-occur ',region-string
)]
660 ["Find in Buffer" (occur ',region-string
)]
661 ["Grep in Current Dir"
662 (grep (format "grep -rnH -e '%s' *" ',region-string
))]
663 ["Grep in Parent Dir"
664 (grep (format "grep -rnH -e '%s' ../*" ',region-string
))]
667 (progn (save-excursion (goto-char (region-beginning)) (insert "[["))
668 (save-excursion (goto-char (region-end)) (insert "]]")))]
669 ["Insert Link Here" (org-mouse-yank-link ',event
)]))))
671 ((save-excursion (beginning-of-line) (looking-at "#\\+STARTUP: \\(.*\\)"))
674 ,@(org-mouse-list-options-menu (mapcar 'car org-startup-options
)
675 'org-mode-restart
))))
677 (and (looking-at "\\( \\|\t\\)\\(+:[0-9a-zA-Z_:]+\\)?\\( \\|\t\\)+$")
678 (org-looking-back " \\|\t")))
679 (org-mouse-popup-global-menu))
680 ((get-context :checkbox
)
683 ["Toggle" org-toggle-checkbox t
]
684 ["Remove" org-mouse-remove-match-and-spaces t
]
686 ["All Clear" (org-mouse-for-each-item
688 (when (save-excursion (org-at-item-checkbox-p))
689 (replace-match "[ ]"))))]
690 ["All Set" (org-mouse-for-each-item
692 (when (save-excursion (org-at-item-checkbox-p))
693 (replace-match "[X]"))))]
694 ["All Toggle" (org-mouse-for-each-item 'org-toggle-checkbox
) t
]
695 ["All Remove" (org-mouse-for-each-item
697 (when (save-excursion (org-at-item-checkbox-p))
698 (org-mouse-remove-match-and-spaces))))]
700 ((and (org-mouse-looking-at "\\b\\w+" "a-zA-Z0-9_")
701 (member (match-string 0) org-todo-keywords-1
))
704 ,@(org-mouse-todo-menu (match-string 0))
706 ["Check TODOs" org-show-todo-tree t
]
707 ["List all TODO keywords" org-todo-list t
]
708 [,(format "List only %s" (match-string 0))
709 (org-todo-list (match-string 0)) t
]
711 ((and (org-mouse-looking-at "\\b[A-Z]+:" "A-Z")
712 (member (match-string 0) stamp-prefixes
))
715 ,@(org-mouse-keyword-replace-menu stamp-prefixes
)
717 ["Check Deadlines" org-check-deadlines t
]
719 ((org-mouse-looking-at org-mouse-priority-regexp
"[]A-Z#") ; priority
720 (popup-menu `(nil ,@(org-mouse-keyword-replace-menu
721 (org-mouse-priority-list) 1 "Priority %s" t
))))
725 ["Open" org-open-at-point t
]
726 ["Open in Emacs" (org-open-at-point t
) t
]
728 ["Copy link" (org-kill-new (match-string 0))]
731 (kill-region (match-beginning 0) (match-end 0))
735 (grep (format "grep -nH -i 'todo\\|fixme' %s*" (match-string 2)))]
736 ; ["Paste file link" ((insert "file:") (yank))]
738 ((org-mouse-looking-at ":\\([A-Za-z0-9_]+\\):" "A-Za-z0-9_" -
1) ;tags
741 [,(format "Display '%s'" (match-string 1))
742 (org-tags-view nil
,(match-string 1))]
743 [,(format "Sparse Tree '%s'" (match-string 1))
744 (org-tags-sparse-tree nil
,(match-string 1))]
746 ,@(org-mouse-tag-menu))))
747 ((org-at-timestamp-p)
750 ["Show Day" org-open-at-point t
]
751 ["Change Timestamp" org-time-stamp t
]
752 ["Delete Timestamp" (org-mouse-delete-timestamp) t
]
753 ["Compute Time Range" org-evaluate-time-range
(org-at-date-range-p)]
755 ["Set for Today" org-mouse-timestamp-today
]
756 ["Set for Tomorrow" (org-mouse-timestamp-today 1 'day
)]
757 ["Set in 1 Week" (org-mouse-timestamp-today 7 'day
)]
758 ["Set in 2 Weeks" (org-mouse-timestamp-today 14 'day
)]
759 ["Set in a Month" (org-mouse-timestamp-today 1 'month
)]
761 ["+ 1 Day" (org-timestamp-change 1 'day
)]
762 ["+ 1 Week" (org-timestamp-change 7 'day
)]
763 ["+ 1 Month" (org-timestamp-change 1 'month
)]
765 ["- 1 Day" (org-timestamp-change -
1 'day
)]
766 ["- 1 Week" (org-timestamp-change -
7 'day
)]
767 ["- 1 Month" (org-timestamp-change -
1 'month
)])))
768 ((get-context :table-special
)
769 (let ((mdata (match-data)))
771 (store-match-data mdata
))
772 (message "match: %S" (match-string 0))
773 (popup-menu `(nil ,@(org-mouse-keyword-replace-menu
774 '(" " "!" "^" "_" "$" "#" "*" "'") 0
776 (case (string-to-char mark
)
777 (?
"( ) Nothing Special")
778 (?
! "(!) Column Names")
779 (?^
"(^) Field Names Above")
780 (?_
"(^) Field Names Below")
781 (?$
"($) Formula Parameters")
782 (?
# "(#) Recalculation: Auto")
783 (?
* "(*) Recalculation: Manual")
784 (?
' "(') Recalculation: None"))) t
))))
785 ((assq :table contextlist
)
788 ["Align Table" org-ctrl-c-ctrl-c
]
789 ["Blank Field" org-table-blank-field
]
790 ["Edit Field" org-table-edit-field
]
793 ["Move Column Left" org-metaleft
]
794 ["Move Column Right" org-metaright
]
795 ["Delete Column" org-shiftmetaleft
]
796 ["Insert Column" org-shiftmetaright
]
798 ["Enable Narrowing" (setq org-table-limit-column-width
(not org-table-limit-column-width
)) :selected org-table-limit-column-width
:style toggle
])
800 ["Move Row Up" org-metaup
]
801 ["Move Row Down" org-metadown
]
802 ["Delete Row" org-shiftmetaup
]
803 ["Insert Row" org-shiftmetadown
]
804 ["Sort lines in region" org-table-sort-lines
(org-at-table-p)]
806 ["Insert Hline" org-table-insert-hline
])
808 ["Copy Rectangle" org-copy-special
]
809 ["Cut Rectangle" org-cut-special
]
810 ["Paste Rectangle" org-paste-special
]
811 ["Fill Rectangle" org-table-wrap-region
])
813 ["Set Column Formula" org-table-eval-formula
]
814 ["Set Field Formula" (org-table-eval-formula '(4))]
815 ["Edit Formulas" org-table-edit-formulas
]
817 ["Recalculate Line" org-table-recalculate
]
818 ["Recalculate All" (org-table-recalculate '(4))]
819 ["Iterate All" (org-table-recalculate '(16))]
821 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks
]
822 ["Sum Column/Rectangle" org-table-sum
823 :active
(or (org-at-table-p) (org-region-active-p))]
824 ["Field Info" org-table-field-info
]
826 (setq org-table-formula-debug
(not org-table-formula-debug
))
827 :style toggle
:selected org-table-formula-debug
]
829 ((and (assq :headline contextlist
) (not (eolp)))
830 (let ((priority (org-mouse-get-priority t
)))
833 ("Tags and Priorities"
834 ,@(org-mouse-keyword-menu
835 (org-mouse-priority-list)
837 (org-mouse-set-priority (string-to-char keyword
)))
838 priority
"Priority %s")
840 ,@(org-mouse-tag-menu))
842 ,@(org-mouse-todo-menu (org-get-todo-state)))
844 (with-current-buffer org-mouse-main-buffer
(org-agenda-show-tags))
845 :visible
(not org-mouse-direct
)]
847 (with-current-buffer org-mouse-main-buffer
(org-agenda-show-priority))
848 :visible
(not org-mouse-direct
)]
849 ,@(if org-mouse-direct
'("--") nil
)
850 ["New Heading" org-mouse-insert-heading
:visible org-mouse-direct
]
852 (progn (org-mouse-end-headline) (insert " ") (org-deadline))
853 :active
(not (save-excursion
854 (org-mouse-re-search-line org-deadline-regexp
)))]
856 (progn (org-mouse-end-headline) (insert " ") (org-schedule))
857 :active
(not (save-excursion
858 (org-mouse-re-search-line org-scheduled-regexp
)))]
860 (progn (org-mouse-end-headline) (insert " ") (org-time-stamp nil
)) t
]
861 ; ["Timestamp (inactive)" org-time-stamp-inactive t]
863 ["Archive Subtree" org-archive-subtree
]
864 ["Cut Subtree" org-cut-special
]
865 ["Copy Subtree" org-copy-special
]
866 ["Paste Subtree" org-paste-special
:visible org-mouse-direct
]
868 ["Alphabetically" (org-sort-entries nil ?a
)]
869 ["Numerically" (org-sort-entries nil ?n
)]
870 ["By Time/Date" (org-sort-entries nil ?t
)]
872 ["Reverse Alphabetically" (org-sort-entries nil ?A
)]
873 ["Reverse Numerically" (org-sort-entries nil ?N
)]
874 ["Reverse By Time/Date" (org-sort-entries nil ?T
)])
876 ["Move Trees" org-mouse-move-tree
:active nil
]
879 (org-mouse-popup-global-menu))))))
881 ;; (defun org-mouse-at-regexp (regexp)
883 ;; (let ((point (point))
884 ;; (bol (progn (beginning-of-line) (point)))
885 ;; (eol (progn (end-of-line) (point))))
887 ;; (re-search-backward regexp bol 1)
889 ;; (progn (forward-char)
890 ;; (re-search-forward regexp eol t))
891 ;; (<= (match-beginning 0) point)))))
893 (defun org-mouse-mark-active ()
894 (and mark-active transient-mark-mode
))
896 (defun org-mouse-in-region-p (pos)
897 (and (org-mouse-mark-active)
898 (>= pos
(region-beginning))
899 (< pos
(region-end))))
901 (defun org-mouse-down-mouse (event)
903 (setq this-command last-command
)
904 (unless (and (= 1 (event-click-count event
))
905 (org-mouse-in-region-p (posn-point (event-start event
))))
906 (mouse-drag-region event
)))
908 (add-hook 'org-mode-hook
910 (setq org-mouse-context-menu-function
'org-mouse-context-menu
)
912 (when (memq 'context-menu org-mouse-features
)
913 (org-defkey org-mouse-map
[mouse-3
] nil
)
914 (org-defkey org-mode-map
[mouse-3
] 'org-mouse-show-context-menu
))
915 (org-defkey org-mode-map
[down-mouse-1
] 'org-mouse-down-mouse
)
916 (when (memq 'context-menu org-mouse-features
)
917 (org-defkey org-mouse-map
[C-drag-mouse-1
] 'org-mouse-move-tree
)
918 (org-defkey org-mouse-map
[C-down-mouse-1
] 'org-mouse-move-tree-start
))
919 (when (memq 'yank-link org-mouse-features
)
920 (org-defkey org-mode-map
[S-mouse-2
] 'org-mouse-yank-link
)
921 (org-defkey org-mode-map
[drag-mouse-3
] 'org-mouse-yank-link
))
922 (when (memq 'move-tree org-mouse-features
)
923 (org-defkey org-mouse-map
[drag-mouse-3
] 'org-mouse-move-tree
)
924 (org-defkey org-mouse-map
[down-mouse-3
] 'org-mouse-move-tree-start
))
926 (when (memq 'activate-stars org-mouse-features
)
927 (font-lock-add-keywords
929 `((,org-outline-regexp
930 0 `(face org-link mouse-face highlight keymap
,org-mouse-map
)
934 (when (memq 'activate-bullets org-mouse-features
)
935 (font-lock-add-keywords
937 `(("^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +"
938 (1 `(face org-link keymap
,org-mouse-map mouse-face highlight
)
942 (when (memq 'activate-checkboxes org-mouse-features
)
943 (font-lock-add-keywords
945 `(("^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +\\(\\[[ X]\\]\\)"
946 (2 `(face bold keymap
,org-mouse-map mouse-face highlight
) t
)))
949 (defadvice org-open-at-point
(around org-mouse-open-at-point activate
)
950 (let ((context (org-context)))
952 ((assq :headline-stars context
) (org-cycle))
953 ((assq :checkbox context
) (org-toggle-checkbox))
954 ((assq :item-bullet context
)
955 (let ((org-cycle-include-plain-lists t
)) (org-cycle)))
958 (defun org-mouse-move-tree-start (event)
960 (message "Same line: promote/demote, (***):move before, (text): make a child"))
963 (defun org-mouse-make-marker (position)
964 (with-current-buffer (window-buffer (posn-window position
))
965 (copy-marker (posn-point position
))))
967 (defun org-mouse-move-tree (event)
968 ;; todo: handle movements between different buffers
971 (let* ((start (org-mouse-make-marker (event-start event
)))
972 (end (org-mouse-make-marker (event-end event
)))
973 (sbuf (marker-buffer start
))
974 (ebuf (marker-buffer end
)))
976 (when (and sbuf ebuf
)
979 (org-back-to-heading)
980 (if (and (eq sbuf ebuf
)
983 (save-excursion (goto-char end
) (org-back-to-heading) (point))))
984 ;; if the same line then promote/demote
985 (if (>= end start
) (org-demote-subtree) (org-promote-subtree))
986 ;; if different lines then move
991 (org-back-to-heading)
992 (when (and (eq sbuf ebuf
)
995 (save-excursion (goto-char start
)
996 (org-back-to-heading) (point))))
997 (outline-end-of-subtree)
999 (if (eobp) (newline) (forward-char)))
1001 (when (looking-at org-outline-regexp
)
1002 (let ((level (- (match-end 0) (match-beginning 0))))
1003 (when (> end
(match-end 0))
1004 (outline-end-of-subtree)
1006 (if (eobp) (newline) (forward-char))
1007 (setq level
(1+ level
)))
1008 (org-paste-subtree level
)
1010 (outline-end-of-subtree)
1011 (when (bolp) (delete-char -
1))))))))))
1014 (defun org-mouse-transform-to-outline ()
1016 (org-back-to-heading)
1017 (let ((minlevel 1000)
1018 (replace-text (concat (match-string 0) "* ")))
1019 (beginning-of-line 2)
1021 (while (not (or (eobp) (looking-at org-outline-regexp
)))
1022 (when (looking-at org-mouse-plain-list-regexp
)
1023 (setq minlevel
(min minlevel
(- (match-end 1) (match-beginning 1)))))
1025 (while (not (or (eobp) (looking-at org-outline-regexp
)))
1026 (when (and (looking-at org-mouse-plain-list-regexp
)
1027 (eq minlevel
(- (match-end 1) (match-beginning 1))))
1028 (replace-match replace-text
))
1031 (defvar _cmd
) ;dynamically scoped from `org-with-remote-undo'.
1033 (defun org-mouse-do-remotely (command)
1034 ; (org-agenda-check-no-diary)
1035 (when (get-text-property (point) 'org-marker
)
1036 (let* ((anticol (- (point-at-eol) (point)))
1037 (marker (get-text-property (point) 'org-marker
))
1038 (buffer (marker-buffer marker
))
1039 (pos (marker-position marker
))
1040 (hdmarker (get-text-property (point) 'org-hd-marker
))
1041 (buffer-read-only nil
)
1042 (newhead "--- removed ---")
1043 (org-mouse-direct nil
)
1044 (org-mouse-main-buffer (current-buffer)))
1045 (when (eq (with-current-buffer buffer major-mode
) 'org-mode
)
1046 (let ((endmarker (with-current-buffer buffer
1047 (outline-end-of-subtree)
1049 (copy-marker (point)))))
1050 (org-with-remote-undo buffer
1051 (with-current-buffer buffer
1054 (org-show-hidden-entry)
1056 (and (outline-next-heading)
1057 (org-flag-heading nil
))) ; show the next heading
1058 (org-back-to-heading)
1059 (setq marker
(copy-marker (point)))
1060 (goto-char (max (point-at-bol) (- (point-at-eol) anticol
)))
1062 (message "_cmd: %S" _cmd
)
1063 (message "this-command: %S" this-command
)
1064 (unless (eq (marker-position marker
) (marker-position endmarker
))
1065 (setq newhead
(org-get-heading))))
1067 (beginning-of-line 1)
1069 (org-agenda-change-all-lines newhead hdmarker
'fixface
))))
1072 (defun org-mouse-agenda-context-menu (&optional event
)
1073 (or (org-mouse-do-remotely 'org-mouse-context-menu
)
1078 ["Undo" (progn (message "last command: %S" last-command
) (setq this-command
'org-agenda-undo
) (org-agenda-undo))
1079 :visible
(if (eq last-command
'org-agenda-undo
)
1080 org-agenda-pending-undo-list
1081 org-agenda-undo-list
)]
1082 ["Rebuild Buffer" org-agenda-redo t
]
1084 org-agenda-diary-entry
(org-agenda-check-type nil
'agenda
'timeline
) t
]
1086 ["Goto Today" org-agenda-goto-today
1087 (org-agenda-check-type nil
'agenda
'timeline
) t
]
1088 ["Display Calendar" org-agenda-goto-calendar
1089 (org-agenda-check-type nil
'agenda
'timeline
) t
]
1090 ("Calendar Commands"
1091 ["Phases of the Moon" org-agenda-phases-of-moon
1092 (org-agenda-check-type nil
'agenda
'timeline
)]
1093 ["Sunrise/Sunset" org-agenda-sunrise-sunset
1094 (org-agenda-check-type nil
'agenda
'timeline
)]
1095 ["Holidays" org-agenda-holidays
1096 (org-agenda-check-type nil
'agenda
'timeline
)]
1097 ["Convert" org-agenda-convert-date
1098 (org-agenda-check-type nil
'agenda
'timeline
)]
1100 ["Create iCalendar file" org-export-icalendar-combine-agenda-files t
])
1102 ["Day View" org-agenda-day-view
1103 :active
(org-agenda-check-type nil
'agenda
)
1104 :style radio
:selected
(eq org-agenda-current-span
'day
)]
1105 ["Week View" org-agenda-week-view
1106 :active
(org-agenda-check-type nil
'agenda
)
1107 :style radio
:selected
(eq org-agenda-current-span
'week
)]
1109 ["Show Logbook entries" org-agenda-log-mode
1110 :style toggle
:selected org-agenda-show-log
1111 :active
(org-agenda-check-type nil
'agenda
'timeline
)]
1112 ["Include Diary" org-agenda-toggle-diary
1113 :style toggle
:selected org-agenda-include-diary
1114 :active
(org-agenda-check-type nil
'agenda
)]
1115 ["Use Time Grid" org-agenda-toggle-time-grid
1116 :style toggle
:selected org-agenda-use-time-grid
1117 :active
(org-agenda-check-type nil
'agenda
)]
1118 ["Follow Mode" org-agenda-follow-mode
1119 :style toggle
:selected org-agenda-follow-mode
]
1121 ["Quit" org-agenda-quit t
]
1122 ["Exit and Release Buffers" org-agenda-exit t
]
1125 (defun org-mouse-get-gesture (event)
1126 (let ((startxy (posn-x-y (event-start event
)))
1127 (endxy (posn-x-y (event-end event
))))
1128 (if (< (car startxy
) (car endxy
)) :right
:left
)))
1131 ; (setq org-agenda-mode-hook nil)
1132 (defvar org-agenda-mode-map
)
1133 (add-hook 'org-agenda-mode-hook
1135 (setq org-mouse-context-menu-function
'org-mouse-agenda-context-menu
)
1136 (org-defkey org-agenda-mode-map
[mouse-3
] 'org-mouse-show-context-menu
)
1137 (org-defkey org-agenda-mode-map
[down-mouse-3
] 'org-mouse-move-tree-start
)
1138 (org-defkey org-agenda-mode-map
[C-mouse-4
] 'org-agenda-earlier
)
1139 (org-defkey org-agenda-mode-map
[C-mouse-5
] 'org-agenda-later
)
1140 (org-defkey org-agenda-mode-map
[drag-mouse-3
]
1141 #'(lambda (event) (interactive "e")
1142 (case (org-mouse-get-gesture event
)
1143 (:left
(org-agenda-earlier 1))
1144 (:right
(org-agenda-later 1)))))))
1146 (provide 'org-mouse
)
1148 ;;; org-mouse.el ends here