https://github.com/honmaple/emacs-maple-imenu
imenu
https://github.com/honmaple/emacs-maple-imenu
emacs imenu
Last synced: about 1 year ago
JSON representation
imenu
- Host: GitHub
- URL: https://github.com/honmaple/emacs-maple-imenu
- Owner: honmaple
- License: gpl-3.0
- Created: 2019-02-13T05:54:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-10T16:16:18.000Z (over 6 years ago)
- Last Synced: 2025-03-20T16:52:08.656Z (over 1 year ago)
- Topics: emacs, imenu
- Language: Emacs Lisp
- Size: 262 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* emacs-maple-imenu
** screenshots
[[https://github.com/honmaple/emacs-maple-imenu/blob/master/screenshot/example.png]]
[[https://github.com/honmaple/emacs-maple-imenu/blob/master/screenshot/example1.png]]
** How to use
#+begin_src bash
git clone https://github.com/honmaple/emacs-maple-imenu ~/.emacs.d/site-lisp/maple-imenu
#+end_src
#+begin_src elisp
(require 'maple-imenu)
(setq maple-imenu-display-alist '((side . left) (slot . -1)))
(evil-leader/set-key "bi" 'maple-imenu)
;; with use-package
(use-package maple-imenu
:ensure nil
:commands (maple-imenu)
:config
(setq maple-imenu-display-alist '((side . left) (slot . -1))))
#+end_src