mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-12-23 02:13:11 -05:00
Added keybinds for dap-mode
This commit is contained in:
parent
8922f55e1b
commit
5d944714d8
1 changed files with 11 additions and 6 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue