13. check_ycp and Emacs

check_ycp and Emacs go together well:

If you haven't done so already, you might want to bind the compile and next-error functions to keys in your ~/.emacs file, e.g.

(global-set-key "f42" 'compile)
(global-set-key "f43" 'next-error)
      

The real challenge here is to find a key that is not already in use for some other important function.

If you are a real hardcore YCP hacker, you can even go so far and change the default compile command to check_ycp in ~/.emacs:

(setq compile-command "check_ycp *.ycp")