Emacs: Add flimenu (flatten imenu).

This commit is contained in:
tastytea 2020-11-13 16:33:46 +01:00
parent 236dfa0460
commit 13e01743cd
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
;;; common.el --- Common programming settings. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-10-27T12:09:21+0100>
;; Time-stamp: <2020-11-13T16:29:55+0100>
;;; Commentary:
@ -213,6 +213,10 @@ collapse other projects."
:after (imenu ivy)
:bind ("C-M-i" . ivy-imenu-anywhere))
;; Flatten imenu list.
(use-package flimenu
:hook (c++-mode . flimenu-mode))
;; Jump to definition using grep.
(use-package dumb-jump
:after (ivy)