You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Emacs cc-mode has font-lock definitions for preprocessor. Those include support for #include highlighting with strings, nice coloring for #define, line continuations and other perks. All of this is lacking in current Haskell mode preprocessor highlighing.
Emacs
cc-mode
hasfont-lock
definitions for preprocessor. Those include support for#include
highlighting with strings, nice coloring for#define
, line continuations and other perks. All of this is lacking in current Haskell mode preprocessor highlighing.haskell-mode
should use:(require 'cc-mode)
(c-initialize-cc-mode)
(font-lock-add-keywords nil c-font-lock-keywords-1)
font-lock
for preprocessor and nothing elsecc-mode
is bundled with Emacs these days so it can be relied upon.The text was updated successfully, but these errors were encountered: