I'm developing a major mode for Emacs. Is there any way that I can set a break point in the source code when fontification happens, for example?
|
|
On an another note as well if you want to just quickly debug some lisp snippet you maybe want to use the ielm mode as well which works like for example the python interactive mode. |
||
|
|
|
|
And just like in any other programming language, you can debug with print statements. I have written a lot of emacs modes and have only rarely needed the debugger. Usually the problem exposes itself with a few well-placed print statements. |
||
|
|
|
The manual for debugging elisp can be found here. You can used |
|||
|
|
|
|
Find the Lisp source of the function you'd like to step through, and type Fontification functions can be a bit tricky though, as they can be invoked at odd times. You can use the |
|||
|
