OSDN Git Service

update email (sf.jp ==> osdn.me)
[howm/howm.git] / howm-lang-en.el
1 ;;; howm-lang-en.el --- Wiki-like note-taking tool
2 ;;; Copyright (C) 2005-2018
3 ;;;   HIRAOKA Kazuyuki <khi@users.osdn.me>
4 ;;; $Id: howm-lang-en.el,v 1.11 2011-12-31 15:07:29 hira Exp $
5 ;;;
6 ;;; This program is free software; you can redistribute it and/or modify
7 ;;; it under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 1, or (at your option)
9 ;;; any later version.
10 ;;;
11 ;;; This program is distributed in the hope that it will be useful,
12 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;;; GNU General Public License for more details.
15 ;;;
16 ;;; The GNU General Public License is available by anonymouse ftp from
17 ;;; prep.ai.mit.edu in pub/gnu/COPYING.  Alternately, you can write to
18 ;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
19 ;;; USA.
20 ;;--------------------------------------------------------------------
21
22 (require 'howm-common)
23
24 (defvar howm-day-of-week-en '("Sun" "Mon" "Tue" "Wed" "Thu" "Fri" "Sat"))
25
26 (defvar howm-menu-command-table-en
27   `(
28     ("[Remember]" howm-remember previous)
29     ("[New]" (lambda () (howm-create ,howm-menu-action-arg)))
30     ("[Add]" (lambda () (howm-create-here ,howm-menu-action-arg)))
31     ("[Dup]" howm-dup)
32     ("[Update]" howm-initialize-buffer previous)
33     ("[Regexp]" howm-list-grep)
34     ("[String]" howm-list-grep-fixed)
35     ;;         ("[roma]" howm-list-migemo)
36     ("[Today]" howm-find-today)
37     ("[Yesterday]" howm-find-yesterday)
38     ("[All]" howm-list-all)
39     ("[Recent]" howm-list-recent)
40     ("[Around]" howm-list-around)
41     ("[Schedule]" howm-list-schedule)
42     ("[Occur]" (lambda () (call-interactively 'howm-occur)) previous)
43     ("[Buffers]" (lambda () (howm-list-buffers ,howm-menu-action-arg)))
44     ("[Marks]" howm-list-mark-ring previous)
45     ("[History]" howm-history)
46     ("[<Title]" howm-keyword-to-kill-ring)
47     ("[<Name]" (lambda () (howm-keyword-to-kill-ring t)))
48     ("[Key>]" howm-insert-keyword previous)
49     ("[Date>]" howm-insert-date previous)
50     ("[DTime>]" howm-insert-dtime previous)
51     ("[Todo]" howm-list-todo)
52     ("[Killall]" howm-kill-all)
53     ("[Force Killall]" (lambda () (interactive) (howm-kill-all t)))
54     ("[Edit Menu]" howm-menu-edit current)
55     ("[Update Menu]" howm-menu-refresh current)
56     ("[Preference]" (lambda () (customize-group 'howm)))
57     ("[Random Walk]" howm-random-walk previous)
58     ))
59
60 (provide 'howm-lang-en)
61
62 ;;; howm-lang-en.el ends here