Skip to content

Commit

Permalink
fixup! Add a new boolean-action-arguments client param
Browse files Browse the repository at this point in the history
  • Loading branch information
robbert-vdh committed Oct 16, 2023
1 parent 4af2691 commit 85d97a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lsp-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -5946,10 +5946,10 @@ one or more symbols, and STRUCTURE should be compatible with
;; `lsp-put' returns `nil' both when the key doesn't exist and when the
;; value is `nil', so we need to explicitly check its presence here
(when (and (lsp-member? structure key) (not (lsp-get structure key)))
(lsp-put structure key :json-false)))
;; If `key' does not exist, then we'll silently ignore it
(when-let ((child (lsp-get structure key)))
(lsp--fix-nested-boolean child rest))))
(lsp-put structure key :json-false))
;; If `key' does not exist, then we'll silently ignore it
(when-let ((child (lsp-get structure key)))
(lsp--fix-nested-boolean child rest)))))

(defvar lsp--formatting-indent-alist
;; Taken from `dtrt-indent-mode'
Expand Down

0 comments on commit 85d97a5

Please sign in to comment.