Demon888 / emacs-maple-scratch

Show recent files and projects in scratch buffer.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

emacs-maple-scratch

Show recent files and projects in scratch buffer.

screenshots

https://github.com/honmaple/emacs-maple-scratch/blob/master/screenshot/example.png https://github.com/honmaple/emacs-maple-scratch/blob/master/screenshot/example1.png

usage

(setq initial-scratch-message "")

(use-package maple-scratch
  :ensure nil
  :hook (window-setup . maple-scratch-mode)
  :config
  (setq maple-scratch-alist
        (append (butlast maple-scratch-alist)
                '(("Init"
                   :action 'maple/open-init-file
                   :desc "Open Init File")
                  ("Test"
                   :action 'maple/open-test-file
                   :desc "Open Test File"))
                (last maple-scratch-alist))
        maple-scratch-source t
        maple-scratch-number 5))

About

Show recent files and projects in scratch buffer.

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 100.0%