You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.4 KiB
74 lines
2.4 KiB
;;; track-mode.el ---
|
|
|
|
;; Copyright (C) 2015-2016 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/>.
|
|
|
|
;; gdb tracking a comint or eshell buffer.
|
|
|
|
(require 'load-relative)
|
|
(require-relative-list '(
|
|
"../../common/cmds"
|
|
"../../common/menu"
|
|
"../../common/track"
|
|
"../../common/track-mode"
|
|
)
|
|
"realgud-")
|
|
(require-relative-list '("core" "init") "realgud:gdb-")
|
|
|
|
(realgud-track-mode-vars "realgud:gdb")
|
|
|
|
(declare-function realgud-track-mode 'realgud-track-mode)
|
|
(declare-function realgud:track-mode-hook 'realgud-track-mode)
|
|
(declare-function realgud:track-mode-enable 'realgud-track-mode)
|
|
(declare-function realgud-track-mode-setup 'realgud-track-mode)
|
|
(declare-function realgud:track-set-debugger 'realgud-track-mode)
|
|
|
|
(define-key realgud:gdb-track-mode-map
|
|
(kbd "C-c !b") 'realgud:goto-debugger-backtrace-line)
|
|
|
|
(defun realgud:gdb-track-mode-hook()
|
|
(use-local-map realgud:gdb-track-mode-map)
|
|
(realgud-track-mode-setup 't)
|
|
(message "realgud:gdb track-mode-hook called")
|
|
)
|
|
|
|
(define-minor-mode realgud:gdb-track-mode
|
|
"Minor mode for tracking gdb inside a process shell via realgud.
|
|
|
|
If called interactively with no prefix argument, the mode is toggled. A prefix argument, captured as ARG, enables the mode if the argument is positive, and disables it otherwise.
|
|
|
|
Key bindings:
|
|
\\{realgud:gdb-track-mode-map}
|
|
"
|
|
:init-value nil
|
|
;; :lighter " gdb" ;; mode-line indicator from realgud-track is sufficient.
|
|
;; The minor mode bindings.
|
|
:global nil
|
|
:group 'realgud:gdb
|
|
:keymap realgud:gdb-track-mode-map
|
|
(if realgud:gdb-track-mode
|
|
(progn
|
|
(realgud:track-set-debugger "gdb")
|
|
(realgud:gdb-track-mode-hook)
|
|
(realgud:track-mode-enable))
|
|
(progn
|
|
(setq realgud-track-mode nil)
|
|
))
|
|
)
|
|
|
|
(provide-me "realgud:gdb-")
|
|
;;; track-mode.el ends here
|