Make column/line chunk match

This commit is contained in:
Kenneth Benzie 2024-04-01 18:59:52 +01:00
parent e64316e336
commit 7b17b794f6

View File

@ -60,6 +60,9 @@ local function get_mode()
return current_mode.name
end
-- Display cusor line/total and column
local position = '# ☰ %l/%L 󰠷 %2c '
-- Construct a statusline for special buffer types.
local function special(group, name, title)
-- Display current mode with dynamic highlights.
@ -67,7 +70,7 @@ local function special(group, name, title)
-- Display filename with dark highlights.
line = line .. '%#StatusLineDark# ' .. title
-- Display current/total lines and column with dynamic highlights.
line = line .. '%=' .. '%#' .. group .. '# ☰%l/%L ·%2c '
line = line .. '%=' .. '%#' .. group .. position
-- Combine the elements into a single string to be evaluated.
return line
end
@ -100,7 +103,7 @@ local function generic(group, name, show_lsp)
'%{&fileencoding ==# "utf-8" ? "" : &fileencoding}' ..
'%{&fileformat ==# "unix" ? "" : "[".&fileformat."]"}' .. ' %)'
-- Display current/total lines and column with dynamic highlights.
line = line .. '%#' .. group .. '# ☰ %l/%L 󰠷 %2c '
line = line .. '%#' .. group .. position
-- Combine the elements into a single string to be evaluated.
return line
end