Last active
December 10, 2015 02:18
-
-
Save sluchin/4366436 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
;;; GDB | |
;; 有用なバッファを開くモード | |
(setq gdb-many-windows t) | |
;; 変数の上にマウスカーソルを置くと値を表示 | |
(add-hook 'gdb-mode-hook '(lambda () (gud-tooltip-mode t))) | |
;; I/O バッファを表示 | |
(setq gdb-use-separate-io-buffer t) | |
;; t にすると mini buffer に値が表示される | |
(setq gud-tooltip-echo-area nil) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment