Skip to content

Commit

Permalink
fix: "Keybind not found" display causing errors (#1215)
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Dec 27, 2023
1 parent ae38baf commit a51abd5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/neorg/modules/core/esupports/hop/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,10 @@ module.public = {
return
end

local link_not_found_buf = module.required["core.ui"].create_split("link-not-found")

local selection = module.required["core.ui"]
.begin_selection(module.required["core.ui"].create_split("link-not-found"))
.begin_selection(link_not_found_buf)
:listener({
"<Esc>",
}, function(self)
Expand Down

0 comments on commit a51abd5

Please sign in to comment.