From 46e8511466a4fca437ed77cb05753ab9bd77a509 Mon Sep 17 00:00:00 2001 From: Lin Sun Date: Mon, 23 Dec 2024 06:53:29 +0000 Subject: [PATCH] Fix the layers dependencies which required a lsp backend --- layers/+lang/go/layers.el | 2 +- layers/+lang/python/layers.el | 2 +- layers/+lang/ruby/layers.el | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/layers/+lang/go/layers.el b/layers/+lang/go/layers.el index 9e54431f24b0..162f87612578 100644 --- a/layers/+lang/go/layers.el +++ b/layers/+lang/go/layers.el @@ -23,4 +23,4 @@ (when (and (boundp 'go-backend) (eq go-backend 'lsp)) - (configuration-layer/declare-layer-dependencies '(dap))) + (configuration-layer/declare-layer-dependencies '(lsp))) diff --git a/layers/+lang/python/layers.el b/layers/+lang/python/layers.el index 908d05f93663..a383334aa15a 100644 --- a/layers/+lang/python/layers.el +++ b/layers/+lang/python/layers.el @@ -23,4 +23,4 @@ (when (and (boundp 'python-backend) (eq python-backend 'lsp)) - (configuration-layer/declare-layer-dependencies '(dap))) + (configuration-layer/declare-layer-dependencies '(lsp))) diff --git a/layers/+lang/ruby/layers.el b/layers/+lang/ruby/layers.el index 79df4db1c7a2..1c36bb8e44ce 100644 --- a/layers/+lang/ruby/layers.el +++ b/layers/+lang/ruby/layers.el @@ -23,7 +23,7 @@ (when (and (boundp 'ruby-backend) (eq ruby-backend 'lsp)) - (configuration-layer/declare-layer-dependencies '(dap))) + (configuration-layer/declare-layer-dependencies '(lsp))) (when (boundp 'ruby-prettier-on-save) (configuration-layer/declare-layer-dependencies '(prettier)))