From 30e8dfcef6d8bfe573022688d7469292f71553f8 Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Sat, 21 Oct 2023 12:22:26 +0200 Subject: [PATCH] fix(cached-commands): bad module require --- CHANGELOG.md | 2 +- lua/ferris/cached_commands.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53590241..e1b3b1a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- Hover actions: typo in module require. +- Hover actions + command cache: module requires. ## [1.0.0] - 2023-11-21 diff --git a/lua/ferris/cached_commands.lua b/lua/ferris/cached_commands.lua index af8fa221..eeabb85f 100644 --- a/lua/ferris/cached_commands.lua +++ b/lua/ferris/cached_commands.lua @@ -21,7 +21,7 @@ M.execute_last_debuggable = function() local rt_dap = require('ferris.dap') rt_dap.start(args) else - local debuggables = require('ferris.debuggables') + local debuggables = require('ferris.commands.debuggables') debuggables() end end