-
Notifications
You must be signed in to change notification settings - Fork 10
/
howm-lang-ja.el
62 lines (57 loc) · 2.42 KB
/
howm-lang-ja.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
;;; howm-lang-ja.el --- Wiki-like note-taking tool
;;; -*- Coding: utf-8 -*-
;;; Copyright (C) 2005-2024
;;; HIRAOKA Kazuyuki <kakkokakko@gmail.com>
;;;
;;; This program is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 1, or (at your option)
;;; any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; The GNU General Public License is available by anonymouse ftp from
;;; prep.ai.mit.edu in pub/gnu/COPYING. Alternately, you can write to
;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
;;; USA.
;;--------------------------------------------------------------------
(require 'howm-common)
(defvar howm-day-of-week-ja '("日" "月" "火" "水" "木" "金" "土"))
(defvar howm-menu-command-table-ja
`(
("[速記]" howm-remember previous)
("[新規]" (lambda () (howm-create ,howm-menu-action-arg)))
("[追加]" (lambda () (howm-create-here ,howm-menu-action-arg)))
("[複製]" howm-dup)
("[更新]" howm-menu-refresh-note previous)
("[正規]" howm-list-grep)
("[固定]" howm-list-grep-fixed)
("[roma]" howm-list-migemo)
("[今日]" howm-find-today)
("[昨日]" howm-find-yesterday)
("[一覧]" howm-list-all)
("[最近]" howm-list-recent)
("[前後]" howm-list-around)
("[予定]" howm-list-schedule)
("[バ内]" (lambda () (call-interactively 'howm-occur)) previous)
("[全バ]" (lambda () (howm-list-buffers ,howm-menu-action-arg)))
("[mark]" howm-list-mark-ring previous)
("[履歴]" howm-history)
("[題↑]" howm-keyword-to-kill-ring)
("[名↑]" (lambda () (howm-keyword-to-kill-ring t)))
("[鍵↓]" howm-insert-keyword previous)
("[日↓]" howm-insert-date previous)
("[時↓]" howm-insert-dtime previous)
("[Todo]" howm-list-todo)
("[全消]" howm-kill-all)
("[強制全消]" (lambda () (interactive) (howm-kill-all t)))
("[menu 編集]" howm-menu-edit current)
("[menu 更新]" howm-menu-refresh current)
("[設定]" (lambda () (customize-group 'howm)))
("[酔歩]" howm-random-walk previous)
))
(provide 'howm-lang-ja)
;;; howm-lang-ja.el ends here