Added keybinds for dap-mode

This commit is contained in:
Andrew Scott 2022-05-16 23:54:19 -04:00
parent 8922f55e1b
commit 5d944714d8
Signed by: a
GPG key ID: 3EB62D0BBB8DB381

View file

@ -287,7 +287,12 @@
(eval-when-compile (eval-when-compile
(require 'cl-lib)) (require 'cl-lib))
(require 'dap-python) (require 'dap-python)
(require 'dap-node)) (require 'dap-node)
:bind
(:map dap-mode-map
("<f5>" . dap-mode)
("<f10>" . dap-next)
("<f11>" . dap-step-in)))
(use-package company (use-package company
:config :config
@ -298,12 +303,12 @@
(company-tooltip-align-annotations t) (company-tooltip-align-annotations t)
:bind :bind
(:map company-active-map (:map company-active-map
("RET" . nil) ("RET" . nil)
("[return]" . nil) ("[return]" . nil)
("TAB" . company-complete-selection) ("TAB" . company-complete-selection)
("<tab>" . company-complete-selection) ("<tab>" . company-complete-selection)
("C-n" . company-select-next) ("C-n" . company-select-next)
("C-p" . company-select-previous))) ("C-p" . company-select-previous)))
;;; Languages ;;; Languages