From 9bd9151c7aed5628af7c7df93dab3e2c262596a3 Mon Sep 17 00:00:00 2001 From: Maximilian Wolff Date: Fri, 27 Mar 2020 21:06:48 +0100 Subject: [PATCH] [go] Load dap when lsp is enabled Go layer now supports dap, therefore when lsp is selected the layer will load dap which in turn will load lsp to enable debugging capabilities for all lsp users. --- layers/+lang/go/layers.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/+lang/go/layers.el b/layers/+lang/go/layers.el index 47f3384db..e5206064e 100644 --- a/layers/+lang/go/layers.el +++ b/layers/+lang/go/layers.el @@ -11,4 +11,4 @@ (when (and (boundp 'go-backend) (eq go-backend 'lsp)) - (configuration-layer/declare-layer-dependencies '(lsp))) + (configuration-layer/declare-layer-dependencies '(dap)))