瀏覽代碼

Update

master
10sr 5 年之前
父節點
當前提交
b9c3cf422f
簽署人: 10sr GPG 金鑰 ID: 7BEC428194130EB2
共有 1 個檔案被更改,包括 8 行新增2 行删除
  1. +8
    -2
      emacs.el

+ 8
- 2
emacs.el 查看文件

@@ -1732,13 +1732,19 @@ ARG is num to show, or defaults to 7."
"My privnotes repository path.")
(expand-file-name "~/my/privnotes"))

(defun my-privnotes-readme (path)
(defun my-privnotes-readme (dir)
"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)))
(let ((path (expand-file-name "README.md" dir)))
(with-current-buffer (find-file path)
(unless (file-exists-p path)
(insert (file-name-base dir)
"\n"
"=======\n"
"\n\n")))))
(define-key ctl-x-map "p" 'my-privnotes-readme)

(set (defvar my-rgrep-alist nil


Loading…
取消
儲存