bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#68981: [PATCH] Add support for deriving major modes in which-func


From: Stefan Kangas
Subject: bug#68981: [PATCH] Add support for deriving major modes in which-func
Date: Sat, 10 Feb 2024 05:10:29 -0600

Version: 30.1

Damien Cassou <damien@cassou.me> writes:

> I wanted to configure which-func to activate only for programmation
> modes so I wrote:
>
> (use-package which-func
>   :init
>   (progn
>     (setq which-func-modes '(prog-mode)))
>   :config
>   (progn
>     (which-function-mode)))
>
> But this doesn't work because which-func only checks for exact major
> modes, not derived ones: because emacs-lisp-mode is not in
> `which-func-modes`, I won't get which-func to activate in
> emacs-lisp-mode even though I want it.
>
> I wrote the attached patch so which-func uses `derived-mode-p'. This
> solves my issue.

Thanks, pushed to master as commit 657d2c11337.  Closing.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]