Skip to content

Commit

Permalink
cleanup: don't need to convert border space characters anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
stevearc committed Nov 14, 2024
1 parent 3250f91 commit 6eeda42
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions lua/quicker/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,6 @@ M.setup = function(opts)
M[k] = v
end

-- Transparently convert a space into an em quad https://unicode-explorer.com/c/2001
-- This is to keep it somewhat unique so it can still be used as an identifiable separator
for _, key in ipairs({ "vert", "strong_header", "soft_header" }) do
if M.borders[key] == " " then
M.borders[key] = ""
end
end

-- Remove the default opts values if use_default_opts is false
if not new_conf.use_default_opts then
M.opts = opts.opts or {}
Expand Down

0 comments on commit 6eeda42

Please sign in to comment.