OSDN Git Service

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