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

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

bug#68981: closed ([PATCH] Add support for deriving major modes in which


From: GNU bug Tracking System
Subject: bug#68981: closed ([PATCH] Add support for deriving major modes in which-func)
Date: Sat, 10 Feb 2024 11:11:02 +0000

Your message dated Sat, 10 Feb 2024 05:10:29 -0600
with message-id 
<CADwFkmkQjNHNo3+wLX-7vK_+_Yb6_C-eb64+hHAWB5pxOBpOwg@mail.gmail.com>
and subject line Re: bug#68981: [PATCH] Add support for deriving major modes in 
which-func
has caused the debbugs.gnu.org bug report #68981,
regarding [PATCH] Add support for deriving major modes in which-func
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
68981: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=68981
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] Add support for deriving major modes in which-func Date: Wed, 07 Feb 2024 20:51:31 +0100
Tags: patch

Hi,

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.

-- 
Damien Cassou

"Success is the ability to go from one failure to another without
losing enthusiasm." --Winston Churchill

Attachment: 0001-Add-support-for-deriving-major-modes-in-which-func.patch
Description: Text Data


--- End Message ---
--- Begin Message --- Subject: Re: 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.


--- End Message ---

reply via email to

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