9606dd344e
* use local-vars-hook coupled to setup function for dap * define new private layer variable `spacemacs--dap-supported-modes` to configure key bindings. This allows to move the key bindings definition from `funcs.el` to `packages.el` * remove duplication of DAP key bindings in READMEs by pointing to the dap layer documentation * alphabetically sort package configuration
17 lines
448 B
EmacsLisp
17 lines
448 B
EmacsLisp
;;; packages.el --- DAP mode functions File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Ivan Yonchovski (yyoncho@gmail.com)
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
|
|
(defvar spacemacs--dap-supported-modes nil
|
|
"List of modes supported by DAP.")
|
|
|
|
(defvar dap-enable-mouse-support t
|
|
"If non-nil, enable `dap-mode''s mouse support.")
|