Skip to content

Commit

Permalink
fix: add missing space to ui rendering (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
willothy committed Dec 21, 2023
1 parent bb14f65 commit f400cb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/hawtkeys/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ M.search = function(text)
lines,
"Already mapped: " .. tostring(data.already_mapped.rhs)
)
table.insert(lines, "In File" .. data.already_mapped.from_file)
table.insert(lines, "In File " .. data.already_mapped.from_file)
end
vim.api.nvim_buf_set_lines(
ResultBuf,
Expand Down

0 comments on commit f400cb0

Please sign in to comment.