Skip to content

Commit 5d3820a

Browse files
committed
syntax-checking: fixed flycheck error list popwin config
Due to an error of argument order, `syntax-checking--buffer-config` was not declared correctly and the setting is not respected by `popwin`. This commit fixed that.
1 parent 57d7cfe commit 5d3820a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

layers/+checkers/syntax-checking/config.el

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ Note only one of BITMAP and MARGIN-STR is used, which is dictated by
9292

9393
;; internals
9494
(defvar syntax-checking--buffer-config
95-
"Internal syntax checking window position config."
96-
`('^\\*Flycheck.+\\*$'
97-
:regexp t
98-
:dedicated t
99-
:position ,syntax-checking-window-position
100-
:width ,syntax-checking-window-width
101-
:height ,syntax-checking-window-height
102-
:stick t
103-
:noselect t))
95+
(list "^\\*Flycheck.+\\*$"
96+
:regexp t
97+
:dedicated t
98+
:position syntax-checking-window-position
99+
:width syntax-checking-window-width
100+
:height syntax-checking-window-height
101+
:stick t
102+
:noselect t)
103+
"Internal syntax checking window position config.")

0 commit comments

Comments
 (0)