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:
parent
819d27d751
commit
dee79320c8
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue