Skip to content

Commit

Permalink
fix(cached-commands): bad module require
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Oct 21, 2023
1 parent 88a4ac0 commit 30e8dfc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lua/ferris/cached_commands.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 30e8dfc

Please sign in to comment.