From af2b19ae73df767168a8443cf8c04ecff892a830 Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Sat, 21 Oct 2023 12:01:49 +0200 Subject: [PATCH] fix(hover-actions): typo in module require --- lua/ferris/hover_actions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/ferris/hover_actions.lua b/lua/ferris/hover_actions.lua index a7b91d2a..8930df03 100644 --- a/lua/ferris/hover_actions.lua +++ b/lua/ferris/hover_actions.lua @@ -123,7 +123,7 @@ function M.handler(_, result, ctx) end, { buffer = bufnr, noremap = true, silent = true }) end -local rl = require('ferris.commands.rust_analyzer') +local rl = require('ferris.rust_analyzer') --- Sends the request to rust-analyzer to get hover actions and handle it function M.hover_actions()