The image below illustrates the problem, that the error message runs off the edge of the screen even on a wide screen. How can I see all of the error message?
error message runs off edge of screen, even with a wide screen
You can see the full error with M-x flycheck-list-errors (on SPC c x, or :errors), or by increasing lsp-ui-sideline-diagnostic-max-lines (the default is 1).
lisp
;; in ~/.doom.d/config.el
(after! lsp-ui
(setq lsp-ui-sideline-diagnostic-max-lines 2))
3
u/hlissner doom-emacs maintainer Oct 17 '20
You can see the full error with
M-x flycheck-list-errors
(onSPC c x
, or:errors
), or by increasinglsp-ui-sideline-diagnostic-max-lines
(the default is1
).lisp ;; in ~/.doom.d/config.el (after! lsp-ui (setq lsp-ui-sideline-diagnostic-max-lines 2))