branch: elpa/flycheck
commit 2134a3b9e9aa127a344bc3dc3cbe03f55fd249d7
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Increase error list file column width from 6 to 12
The File column was only 6 characters wide, causing filenames to be
truncated in multi-file error lists (e.g., when using LSP).
Fixes #1908
---
flycheck.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/flycheck.el b/flycheck.el
index 99efcce6f1..4d4a075b22 100644
--- a/flycheck.el
+++ b/flycheck.el
@@ -5098,7 +5098,7 @@ message to stretch arbitrarily far."
(format "%s (%s)" message checker-name)))
(defconst flycheck-error-list-format
- `[("File" 6)
+ `[("File" 12)
("Line" 5 flycheck-error-list-entry-< :right-align t)
("Col" 3 nil :right-align t)
("Level" 8 flycheck-error-list-entry-level-<)