branch: externals/realgud
commit b3719faa0207688db5db543e5420648c11928d4f
Author: rocky <[email protected]>
Commit: rocky <[email protected]>
Add autoloads for defalias debugger invocations
---
realgud/debugger/bashdb/bashdb.el | 1 +
realgud/debugger/gub/gub.el | 1 +
realgud/debugger/ipdb/ipdb.el | 1 +
realgud/debugger/jdb/jdb.el | 1 +
realgud/debugger/kshdb/kshdb.el | 1 +
realgud/debugger/pdb/pdb.el | 1 +
realgud/debugger/rdebug/rdebug.el | 1 +
realgud/debugger/remake/remake.el | 1 +
realgud/debugger/trepan.pl/trepanpl.el | 1 +
realgud/debugger/trepan/trepan.el | 1 +
realgud/debugger/trepan2/trepan2.el | 3 +++
realgud/debugger/trepan3k/trepan3k.el | 1 +
realgud/debugger/zshdb/zshdb.el | 1 +
13 files changed, 15 insertions(+)
diff --git a/realgud/debugger/bashdb/bashdb.el
b/realgud/debugger/bashdb/bashdb.el
index 8ca9d38..ffffbe2 100644
--- a/realgud/debugger/bashdb/bashdb.el
+++ b/realgud/debugger/bashdb/bashdb.el
@@ -77,6 +77,7 @@ fringe and marginal icons.
opt-cmd-line no-reset)
)
+;;;###autoload
(defalias 'bashdb 'realgud:bashdb)
(provide-me "realgud-")
diff --git a/realgud/debugger/gub/gub.el b/realgud/debugger/gub/gub.el
index 6a7ad15..5338501 100644
--- a/realgud/debugger/gub/gub.el
+++ b/realgud/debugger/gub/gub.el
@@ -80,6 +80,7 @@ marginal icons is reset."
(realgud-gub-fn opt-command-line no-reset)
)
+;;;###autoload
(defalias 'gub 'realgud-gub)
(provide-me "realgud-")
diff --git a/realgud/debugger/ipdb/ipdb.el b/realgud/debugger/ipdb/ipdb.el
index 022acbd..23ba2ad 100644
--- a/realgud/debugger/ipdb/ipdb.el
+++ b/realgud/debugger/ipdb/ipdb.el
@@ -117,6 +117,7 @@ fringe and marginal icons.
)
+;;;###autoload
(defalias 'ipdb 'realgud:ipdb)
(provide-me "realgud-")
diff --git a/realgud/debugger/jdb/jdb.el b/realgud/debugger/jdb/jdb.el
index 575e091..047dd51 100644
--- a/realgud/debugger/jdb/jdb.el
+++ b/realgud/debugger/jdb/jdb.el
@@ -102,6 +102,7 @@ fringe and marginal icons.
)
)
+;;;###autoload
(defalias 'jdb 'realgud:jdb)
(provide-me "realgud-")
diff --git a/realgud/debugger/kshdb/kshdb.el b/realgud/debugger/kshdb/kshdb.el
index 9355ee3..397d832 100644
--- a/realgud/debugger/kshdb/kshdb.el
+++ b/realgud/debugger/kshdb/kshdb.el
@@ -64,6 +64,7 @@ marginal icons is reset."
no-reset)
))
+;;;###autoload
(defalias 'kshdb 'realgud:kshdb)
(provide-me "realgud-")
diff --git a/realgud/debugger/pdb/pdb.el b/realgud/debugger/pdb/pdb.el
index 386f412..7d970d3 100644
--- a/realgud/debugger/pdb/pdb.el
+++ b/realgud/debugger/pdb/pdb.el
@@ -103,6 +103,7 @@ fringe and marginal icons.
)
+;;;###autoload
(defalias 'pdb 'realgud:pdb)
;;;###autoload
diff --git a/realgud/debugger/rdebug/rdebug.el
b/realgud/debugger/rdebug/rdebug.el
index 253f015..3abd307 100644
--- a/realgud/debugger/rdebug/rdebug.el
+++ b/realgud/debugger/rdebug/rdebug.el
@@ -119,5 +119,6 @@ fringe and marginal icons.
)
+;;;###autoload
(defalias 'rdebug 'realgud:rdebug)
(provide-me "realgud-")
diff --git a/realgud/debugger/remake/remake.el
b/realgud/debugger/remake/remake.el
index 2b75f72..e07cb1b 100644
--- a/realgud/debugger/remake/remake.el
+++ b/realgud/debugger/remake/remake.el
@@ -83,6 +83,7 @@ This should be an executable on your path, or an absolute
file name."
(realgud:remake-run-debugger opt-cmd-line no-reset)
)
+;;;###autoload
(defalias 'remake 'realgud:remake)
(provide-me "realgud-")
diff --git a/realgud/debugger/trepan.pl/trepanpl.el
b/realgud/debugger/trepan.pl/trepanpl.el
index 0b4ac32..689c03d 100644
--- a/realgud/debugger/trepan.pl/trepanpl.el
+++ b/realgud/debugger/trepan.pl/trepanpl.el
@@ -68,6 +68,7 @@ fringe and marginal icons.
'realgud:trepanpl-minibuffer-history
opt-cmd-line no-reset))
+;;;###autoload
(defalias 'trepan.pl 'realgud:trepan.pl)
(provide-me "realgud-")
;;; trepanpl.el ends here
diff --git a/realgud/debugger/trepan/trepan.el
b/realgud/debugger/trepan/trepan.el
index 41c51b1..d98c129 100644
--- a/realgud/debugger/trepan/trepan.el
+++ b/realgud/debugger/trepan/trepan.el
@@ -66,6 +66,7 @@ fringe and marginal icons.
opt-cmd-line no-reset)
)
+;;;###autoload
(defalias 'trepan 'realgud:trepan)
(provide-me "realgud-")
;;; trepan.el ends here
diff --git a/realgud/debugger/trepan2/trepan2.el
b/realgud/debugger/trepan2/trepan2.el
index a444be5..6952789 100644
--- a/realgud/debugger/trepan2/trepan2.el
+++ b/realgud/debugger/trepan2/trepan2.el
@@ -46,6 +46,9 @@ This should be an executable on your path, or an absolute
file name."
;;
;;;###autoload
+(defalias 'trepan2 'realgud:trepan2)
+
+;;;###autoload
(defun realgud:trepan2 (&optional opt-cmd-line no-reset)
"Invoke the trepan2 Python debugger and start the Emacs user interface.
diff --git a/realgud/debugger/trepan3k/trepan3k.el
b/realgud/debugger/trepan3k/trepan3k.el
index 88bee00..1fead65 100644
--- a/realgud/debugger/trepan3k/trepan3k.el
+++ b/realgud/debugger/trepan3k/trepan3k.el
@@ -68,6 +68,7 @@ fringe and marginal icons.
opt-cmd-line no-reset)
)
+;;;###autoload
(defalias 'trepan3k 'realgud:trepan3k)
;;;###autoload
diff --git a/realgud/debugger/zshdb/zshdb.el b/realgud/debugger/zshdb/zshdb.el
index 9f3a6b6..362ed39 100644
--- a/realgud/debugger/zshdb/zshdb.el
+++ b/realgud/debugger/zshdb/zshdb.el
@@ -83,6 +83,7 @@ fringe and marginal icons.
;; )
))
+;;;###autoload
(defalias 'zshdb 'realgud:zshdb)
(provide-me "realgud-")