]> code.delx.au - gnu-emacs-elpa/blob - packages/excorporate/excorporate-calendar.el
Merge commit '0cda39255827f283e7578cd469ae42daad9556a2' from js2-mode
[gnu-emacs-elpa] / packages / excorporate / excorporate-calendar.el
1 ;;; excorporate-calendar.el --- Exchange for calendar -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2014-2016 Free Software Foundation, Inc.
4
5 ;; Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
6 ;; Keywords: calendar
7
8 ;; This program is free software: you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
12
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
17
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
20
21 ;;; Commentary:
22
23 ;; Add a calendar keybinding for Excorporate. Default to the
24 ;; excorporate-org interface.
25
26 ;;; Code:
27
28 (require 'calendar)
29
30 (defcustom excorporate-calendar-show-day-function 'exco-org-show-day
31 "A function to be called by pressing `e' in Calendar."
32 :type 'function
33 :group 'excorporate)
34
35 (defun exco-calendar-show-day ()
36 "Show meetings for the selected date."
37 (interactive)
38 (apply excorporate-calendar-show-day-function (calendar-cursor-to-date t)))
39
40 ;; I arrogantly claim "e" for now, but irresponsibly reserve the right
41 ;; to change it later.
42 (define-key calendar-mode-map "e" #'exco-calendar-show-day)
43
44 (provide 'excorporate-calendar)
45
46 ;;; excorporate-calendar.el ends here