blob: 803ec2482f1464d9cb8943b416dfb6273ac283cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
;; Copyright (C) 2019 Free Software Foundation, Inc
;; Author: Rocky Bernstein <rocky@gnu.org>
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;; `realgud:node-debug' Main interface to older "node debugb" debugger via Emacs
(require 'cl-lib)
(require 'load-relative)
(require 'realgud)
(require-relative-list '("core" "track-mode") "realgud:node-debug-")
;; This is needed, or at least the docstring part of it is needed to
;; get the customization menu to work in Emacs 24.
(defgroup realgud:node-debug nil
"The realgud interface to the node-debug debugger"
:group 'realgud
:version "24.3")
;; -------------------------------------------------------------------
;; User-definable variables
;;
(defcustom realgud:node-debug-command-name
"node debug"
"File name for executing the Javascript debugger and command options.
This should be an executable on your path, or an absolute file name."
:type 'string
:group 'realgud:node-debug)
;; -------------------------------------------------------------------
;; The end.
;;
(declare-function node-debug-track-mode 'realgud-node-debug-track-mode)
(declare-function node-debug-query-cmdline 'realgud:node-debug-core)
(declare-function node-debug-parse-cmd-args 'realgud:node-debug-core)
;;;###autoload
(defun realgud:node-debug (&optional opt-cmd-line no-reset)
"Invoke the node-debug shell debugger and start the Emacs user interface.
String OPT-CMD-LINE specifies how to run node-debug.
OPT-CMD-LINE is treated like a shell string; arguments are
tokenized by `split-string-and-unquote'. The tokenized string is
parsed by `node-debug-parse-cmd-args' and path elements found by that
are expanded using `realgud:expand-file-name-if-exists'.
Normally, command buffers are reused when the same debugger is
reinvoked inside a command buffer with a similar command. If we
discover that the buffer has prior command-buffer information and
NO-RESET is nil, then that information which may point into other
buffers and source buffers which may contain marks and fringe or
marginal icons is reset. See `loc-changes-clear-buffer' to clear
fringe and marginal icons."
(interactive)
(let ((cmd-buf
(realgud:run-debugger "node-debug"
'node-debug-query-cmdline 'node-debug-parse-cmd-args
'realgud:node-debug-minibuffer-history
opt-cmd-line no-reset)))
;; (if cmd-buf
;; (with-current-buffer cmd-buf
;; ;; FIXME should allow customization whether to do or not
;; ;; and also only do if hook is not already there.
;; (realgud:remove-ansi-schmutz)
;; )
;; )
))
(defalias 'node-debug 'realgud:node-debug)
(provide 'realgud-node-debug)
|