helm-git-grep icon indicating copy to clipboard operation
helm-git-grep copied to clipboard

Add require for compile

Open hexmode opened this issue 6 years ago • 3 comments

Otherwise, if the user hasn't already loaded compile for some reason, an error will result.

hexmode avatar Feb 08 '18 17:02 hexmode

Ah, so that is why compilation mode isn't working for helm git grep. This may be related to https://github.com/yasuyk/helm-git-grep/issues/31

joeheyming avatar Mar 05 '18 21:03 joeheyming

It looks like the failing checks here have something to do with compiling emacs, not this patch.

hexmode avatar Feb 27 '19 19:02 hexmode

Going back to this old issue here. I noticed that after I switched my emacs configuration to load most packages on demand, helm-git-grep started failing due to missing define-compilation-mode. As a workaround, I've added:

(use-package compile
  :demand t)

to my emacs configuration, but it looks like helm-git-grep should (require 'compile). No?

felipebalbi avatar Mar 10 '21 11:03 felipebalbi