Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/colonelpanic8/flimenu
https://github.com/colonelpanic8/flimenu
emacs imenu
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/colonelpanic8/flimenu
- Owner: colonelpanic8
- Created: 2016-08-18T01:55:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-04-01T15:17:57.000Z (almost 4 years ago)
- Last Synced: 2024-08-07T18:31:46.815Z (5 months ago)
- Topics: emacs, imenu
- Language: Emacs Lisp
- Size: 27.3 KB
- Stars: 13
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
[[http://melpa.org/#/flimenu][file:http://melpa.org/packages/flimenu-badge.svg]]
* flimenu
Flimenu provides functions to flatten imenu indexes and a mode to
apply those functions automatically.
* Installation
Install from MELPA (coming soon) with ~M-x package-install flimenu~. See the [[https://github.com/milkypostman/melpa][melpa repository]] for details about how to set up MELPA if you have not already done so.
* Configuration
** Standard
#+BEGIN_SRC emacs-lisp
(require 'flimenu)(setq flimenu-ignore-modes-list 'my-mode-where-things-shouldnt-be-active)
(flimenu-global-mode)
#+END_SRC
** ~use-package~
#+BEGIN_SRC emacs-lisp
(use-package flimenu
:config
(progn
(setq flimenu-ignore-modes-list 'my-mode-where-things-shouldnt-be-active)
(flimenu-global-mode)))
#+END_SRC