From d41da2a14a4563cecfaa734e5e2ba350a42c7e59 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 7 Apr 2020 20:25:48 -0400 Subject: [PATCH] Bump :tools lsp emacs-lsp/lsp-mode@76fe399 -> emacs-lsp/lsp-mode@401d724 emacs-lsp/lsp-ui@134d9b7 -> emacs-lsp/lsp-ui@242dfe8 emacs-lsp/lsp-ivy@39b90e7 -> emacs-lsp/lsp-ivy@a6b7841 --- modules/tools/lsp/config.el | 3 +-- modules/tools/lsp/packages.el | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/modules/tools/lsp/config.el b/modules/tools/lsp/config.el index 2ebcf0637..00d3ea3cd 100644 --- a/modules/tools/lsp/config.el +++ b/modules/tools/lsp/config.el @@ -34,8 +34,7 @@ working on that project after closing the last buffer.") ;; Don't prompt the user for the project root every time we open a new ;; lsp-worthy file, instead, try to guess it with projectile. (setq lsp-auto-guess-root t) - ;; Auto-kill LSP server once you've killed the last buffer associated with its - ;; project. + ;; Auto-kill LSP server after last workspace buffer is killed. (setq lsp-keep-workspace-alive nil) ;; Let `flycheck-check-syntax-automatically' determine this. (setq lsp-flycheck-live-reporting nil) diff --git a/modules/tools/lsp/packages.el b/modules/tools/lsp/packages.el index f0fdff97e..859d6caa4 100644 --- a/modules/tools/lsp/packages.el +++ b/modules/tools/lsp/packages.el @@ -1,11 +1,11 @@ ;; -*- no-byte-compile: t; -*- ;;; tools/lsp/packages.el -(package! lsp-mode :pin "76fe399b40") -(package! lsp-ui :pin "134d9b725d") +(package! lsp-mode :pin "401d72462f") +(package! lsp-ui :pin "242dfe859c") (when (featurep! :completion company) (package! company-lsp :pin "f921ffa0cd")) (when (featurep! :completion ivy) - (package! lsp-ivy :pin "39b90e7aef")) + (package! lsp-ivy :pin "a6b7841e08")) (when (featurep! :completion helm) (package! helm-lsp :pin "6f62659cc5"))