Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 883613 - app-emacs/ebuild-run-mode color support
Summary: app-emacs/ebuild-run-mode color support
Status: CONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal enhancement (vote)
Assignee: akater
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-11-29 18:06 UTC by Ulrich Müller
Modified: 2022-11-29 18:06 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ulrich Müller gentoo-dev 2022-11-29 18:06:44 UTC
Just a heads-up, ebuild-mode-1.61 will enable support for ANSI graphical control sequences in the compilation buffer.

Presumably by defining a (trivial) derived mode of compilation-mode, which as its only action does this:

  (if (fboundp 'ansi-color-compilation-filter)
      (add-hook 'compilation-filter-hook
                'ansi-color-compilation-filter nil t))

Maybe ebuild-run-mode should follow?