Guest User

Untitled

a guest
Jul 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.56 KB | None | 0 0
  1. '(flymake-errline ((((class color)) (:underline "OrangeRed"))))
  2. '(flymake-warnline ((((class color)) (:underline "yellow"))))
  3.  
  4. ;; flymake
  5. (defun my-flymake-show-next-error()
  6.   (interactive)
  7.   (flymake-goto-next-error)
  8.   (flymake-display-err-menu-for-current-line)
  9.   )
  10.  
  11. ;;
  12. ;; Setting some C / C++ defaults
  13. ;;
  14. (add-hook 'c-mode-common-hook
  15.           (function (lambda ()
  16.                       ;; more stuff here
  17.                       (flymake-mode t)
  18.                       (global-set-key  "\C-c \C-v" 'my-flymake-show-next-error)
  19.                       )))
Add Comment
Please, Sign In to add comment