问题
I'm rewriting my Emacs' .init file and I'd like to be able to stop loading it at some specific points. It's like inserting a break point, but nothing to do with debugging.
I've tried using 'throw' and 'catch' but that's not really what I'm looking for.
Thanks
回答1:
You can add (debug)
at suitable places. That will open a debugger window, where you can hit c to continue and q to quit.
来源:https://stackoverflow.com/questions/24060841/stop-loading-emacs-configuration-file-setting-a-break-point