Anders Lindgren
Anders Lindgren
Hi! Currently, I explicitly strip away the default background as the output would look funny with it. e2ansi only prints the part of a line that contains text, so instead...
Hi! Unfortunately, it doesn't work. I need to pass the --script flag to Emacs. I've tried with "#!/usr/bin/env emacs --script". On some systems it works. On other systems, "env" see...
Hi! Personally, I try to stay away from hacks, as they often tend to come back and bite you. I would rather have an officially sanctioned solution, like an executable...
Hi! Unforetunately, the error does not come from e2ansi, as I can get a normal Emacs to issue the same error message. Steps to repeat: ``` emacs -Q M-x global-font-lock-mode...
Hi! Could you make a step-by-step description, starting with "emacs -q" with your normal setup and describe what happens and what you expected it happen. Also, could you list the...
Hi! > Would it be easy to fix ? I need to investigate what the problem is -- I don't use rainbow-delimiters myself. Just a quick question: Have you tried...
Hi! This makes sense to me. cmake-font-lock-active replaces all existing font-lock rules with it's own, unfortunately, this includes the font-lock rules of minor modes like rainbow-delemiter-mode. Are you satisfied with...
Hi! I see your point of view, but I would like to think about it for a while. Removing it will make it stop working for existing users, if they...
Hi! In most font-lock packages I've written I've used font-lock-add-keywords and font-lock-remove-keywords, this allows me to model the packages as minor modes that can be enabled and disabled. In fact,...
Hi! First, I don't know what problem your code is trying to solve, so I don't know if it would work better that the original code. I just spotted one...