Browse Source

Add my-privnotes

master
10sr 5 years ago
parent
commit
34137d1bbb
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 13 additions and 0 deletions
  1. +13
    -0
      emacs.el

+ 13
- 0
emacs.el View File

@@ -1782,6 +1782,19 @@ ARG is num to show, or defaults to 7."
"") "")
"memo.txt")))) "memo.txt"))))


(set (defvar my-privnotes-path nil
"My privnotes repository path.")
(expand-file-name "~/my/privnotes"))

(defun my-privnotes-readme (path)
"Open my privnotes."
(interactive (list
(read-file-name "Privnotes: "
(expand-file-name (format-time-string "%Y%m%d_")
my-privnotes-path))))
(find-file (expand-file-name "README.md" path)))
(define-key ctl-x-map "p" 'my-privnotes-readme)

(set (defvar my-rgrep-alist nil (set (defvar my-rgrep-alist nil
"Alist of rgrep command. "Alist of rgrep command.
Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the Each element is in the form like (NAME SEXP COMMAND), where SEXP returns the


Loading…
Cancel
Save