File tree 4 files changed +24
-5
lines changed
4 files changed +24
-5
lines changed Original file line number Diff line number Diff line change
1
+ (source gnu )
2
+ (source melpa )
3
+
4
+ (package-file " helm-orgcard.el" )
Original file line number Diff line number Diff line change
1
+ # helm-orgcard.el
2
+
3
+ Browse the orgcard by helm.
4
+
5
+ ## Screenshot
6
+
7
+ ![ helm-orgcard] ( image/helm-orgcard.png )
Original file line number Diff line number Diff line change 1
- ; ;; helm-orgcard.el --- browse the orgcard by helm
1
+ ; ;; helm-orgcard.el --- browse the orgcard by helm -*- lexical-binding : t -*-
2
2
3
3
; ; Description: browse the orgcard by helm.
4
4
; ; Author: Yuhei Maeda <yuhei.maeda_at_gmail.com>
8
8
; ; Version: 0.1
9
9
; ; Keywords: convenience, helm, org
10
10
; ; URL: https://github.com/emacs-jp/helm-orgcard
11
- ; ; Package-Requires: ((helm "1.5.2 "))
11
+ ; ; Package-Requires: ((helm-core "1.7.7 "))
12
12
13
13
; ; This program is free software; you can redistribute it and/or modify
14
14
; ; it under the terms of the GNU General Public License as published by
27
27
28
28
; ; Put the helm-orgcard.el to your
29
29
; ; load-path.
30
- ; ; Add to .emacs :
30
+ ; ; Add to init.el :
31
31
; ; (require 'helm-orgcard)
32
32
; ;
33
33
; ; Original version is anything-orgcard, and port to helm.
39
39
40
40
(require 'helm )
41
41
42
- (defvar hoc-lang-selector 'en
43
- " Select orgcard langage. English or Japanese." )
42
+ (defgroup helm-orgcard nil
43
+ " Browse the orgcard by helm"
44
+ :group 'org )
45
+
46
+ (defcustom hoc-lang-selector 'en
47
+ " Select orgcard language. English or Japanese."
48
+ :type '(choice
49
+ (const :tag " English" en)
50
+ (const :tag " Japanese" ja))
51
+ :group 'helm-orgcard )
44
52
45
53
(defvar hoc-orgcard-url '((en " http://orgmode.org/orgcard.txt" )
46
54
(ja " http://orgmode.jp/orgcard-ja.txt" ))
You can’t perform that action at this time.
0 commit comments