OSDN Git Service

update docs for 1.4.8
[howm/howm.git] / howm-lang-ja.el
1 ;;; howm-lang-ja.el --- Wiki-like note-taking tool
2 ;;; -*- Coding: iso-2022-7bit -*-
3 ;;; Copyright (C) 2005-2021
4 ;;;   HIRAOKA Kazuyuki <khi@users.osdn.me>
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-ja '("\e$BF|\e(B" "\e$B7n\e(B" "\e$B2P\e(B" "\e$B?e\e(B" "\e$BLZ\e(B" "\e$B6b\e(B" "\e$BEZ\e(B"))
25
26 (defvar howm-menu-command-table-ja
27   `(
28     ("[\e$BB.5-\e(B]" howm-remember previous)
29     ("[\e$B?75,\e(B]" (lambda () (howm-create ,howm-menu-action-arg)))
30     ("[\e$BDI2C\e(B]" (lambda () (howm-create-here ,howm-menu-action-arg)))
31     ("[\e$BJ#@=\e(B]" howm-dup)
32     ("[\e$B99?7\e(B]" howm-initialize-buffer previous)
33     ("[\e$B@55,\e(B]" howm-list-grep)
34     ("[\e$B8GDj\e(B]" howm-list-grep-fixed)
35     ("[roma]" howm-list-migemo)
36     ("[\e$B:#F|\e(B]" howm-find-today)
37     ("[\e$B:rF|\e(B]" howm-find-yesterday)
38     ("[\e$B0lMw\e(B]" howm-list-all)
39     ("[\e$B:G6a\e(B]" howm-list-recent)
40     ("[\e$BA08e\e(B]" howm-list-around)
41     ("[\e$BM=Dj\e(B]" howm-list-schedule)
42     ("[\e$B%PFb\e(B]" (lambda () (call-interactively 'howm-occur)) previous)
43     ("[\e$BA4%P\e(B]" (lambda () (howm-list-buffers ,howm-menu-action-arg)))
44     ("[mark]" howm-list-mark-ring previous)
45     ("[\e$BMzNr\e(B]" howm-history)
46     ("[\e$BBj",\e(B]" howm-keyword-to-kill-ring)
47     ("[\e$BL>",\e(B]" (lambda () (howm-keyword-to-kill-ring t)))
48     ("[\e$B80"-\e(B]" howm-insert-keyword previous)
49     ("[\e$BF|"-\e(B]" howm-insert-date previous)
50     ("[\e$B;~"-\e(B]" howm-insert-dtime previous)
51     ("[Todo]" howm-list-todo)
52     ("[\e$BA4>C\e(B]" howm-kill-all)
53     ("[\e$B6/@)A4>C\e(B]" (lambda () (interactive) (howm-kill-all t)))
54     ("[menu \e$BJT=8\e(B]" howm-menu-edit current)
55     ("[menu \e$B99?7\e(B]" howm-menu-refresh current)
56     ("[\e$B@_Dj\e(B]" (lambda () (customize-group 'howm)))
57     ("[\e$B?lJb\e(B]" howm-random-walk previous)
58     ))
59
60 (provide 'howm-lang-ja)
61
62 ;;; howm-lang-ja.el ends here