emacs-maple-explorer icon indicating copy to clipboard operation
emacs-maple-explorer copied to clipboard

Create file, imenu, buffer sidebar on Emacs quickly

  • emacs-maple-explorer ** screenshots [[https://github.com/honmaple/emacs-maple-explorer/blob/master/screenshot/example.png]]

** How to use #+begin_src bash git clone https://github.com/honmaple/emacs-maple-explorer ~/.emacs.d/site-lisp/maple-explorer #+end_src

#+begin_src elisp (require 'maple-explorer) (when (and (display-graphic-p) icon) (maple-explorer-icon-mode))

 ;; with use-package
 (use-package maple-explorer
   :quelpa (:fetcher github :repo "honmaple/emacs-maple-explorer")
   :commands (maple-explorer-file maple-explorer-buffer maple-explorer-imenu maple-explorer-recentf)
   :config
   (add-to-list 'maple-explorer-display-alist '(file . ((side . left) (slot . -1)))))

#+end_src