fix(config): remove %l from default eol_format

Problem: forge links are now rendered inline, making the `%l` EOL
specifier redundant in the default format.

Solution: change default `eol_format` from `'%l  %c  %r  %d'` to
`'%c  %r  %d'`. The `%l` specifier remains functional for users who
explicitly set it.
This commit is contained in:
Barrett Ruth 2026-03-10 18:58:42 -04:00
parent 819d27d751
commit dee79320c8

View file

@ -118,7 +118,7 @@ local defaults = {
max_priority = 3,
view = {
default = 'category',
eol_format = '%l %c %r %d',
eol_format = '%c %r %d',
category = {
order = {},
folding = true,