Fix #1792: tide-server-max-response-length = 512kb
This commit is contained in:
parent
4b20c7206e
commit
c1046231ce
1 changed files with 5 additions and 1 deletions
|
@ -169,7 +169,11 @@ to tide."
|
||||||
:defer t
|
:defer t
|
||||||
:config
|
:config
|
||||||
(setq tide-completion-detailed t
|
(setq tide-completion-detailed t
|
||||||
tide-always-show-documentation t)
|
tide-always-show-documentation t
|
||||||
|
;; Fix #1792: by default, tide ignores payloads larger than 100kb. This
|
||||||
|
;; is too small for larger projects that produce long completion lists,
|
||||||
|
;; so we up it to 512kb.
|
||||||
|
tide-server-max-response-length 524288)
|
||||||
;; code completion
|
;; code completion
|
||||||
(after! company
|
(after! company
|
||||||
;; tide affects the global `company-backends', undo this so doom can handle
|
;; tide affects the global `company-backends', undo this so doom can handle
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue