Skip to content

Commit a7489b3

Browse files
committed
Add lsp-ui-mode activation to php-ui.el
1 parent e83f01d commit a7489b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lisp/php-ui.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
'((phpactor :test (lambda () (and (require 'phpactor nil t) (featurep 'phpactor)))
3434
:activate php-ui-phpactor-activate
3535
:deactivate php-ui-phpactor-activate)
36-
(lsp-ui :test (lambda () (and (require 'lsp-ui nil t) (featurep 'lsp-ui)))
37-
:activate (lambda () (user-error "Not implemented"))
38-
:deactivate (lambda () (user-error "Not implemented")))))
36+
(lsp-mode :test (lambda () (and (require 'lsp nil t) (featurep 'lsp)))
37+
:activate lsp
38+
:deactivate lsp-workspace-shutdown)))
3939

4040
(defvar php-ui-impl nil)
4141

0 commit comments

Comments
 (0)