From dee79320c82698f9ade19e451a60ec6f06454b0d Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 10 Mar 2026 18:58:42 -0400 Subject: [PATCH] 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. --- lua/pending/config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/pending/config.lua b/lua/pending/config.lua index 232e841..842dfc0 100644 --- a/lua/pending/config.lua +++ b/lua/pending/config.lua @@ -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,