1

I'm using flymake-python. When I execute flymake-display-err-menu-for-current-line, emacs always complains that Can not put GUI menu on this terminal.

Does anyone have ideas about how to show flymake's message in a terminal?

Hanfei Sun
  • 45,281
  • 39
  • 129
  • 237

1 Answers1

0

Try setting the following in your emacs configuration:

(setq flymake-gui-warnings-enabled nil)

You might consider using flycheck instead of flymake. It's under active development and should work fine for python without any additional configuration.

Chris Barrett
  • 3,383
  • 17
  • 21