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