I've reimplemented script which scans sources and makes rc file for the Jdb. Now it's in Elisp jdb-sourcepath.el.
Here is init.el snippet:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'jdb-sourcepath) | |
(add-hook | |
'jdb-mode-hook | |
(lambda () | |
(set 'gud-jdb-sourcepath (jdb-sourcepath-from-rc)))) | |
(run-at-time "1:00am" (* 60 60 24) 'jdb-setup) |
No comments:
Post a Comment