We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b334a94 commit 7b5a249Copy full SHA for 7b5a249
lsp-java-boot.el
@@ -88,12 +88,12 @@ Store CALLBACK to use it `sts/highlight'."
88
(cl-defmethod lsp-execute-command
89
(_server (_command (eql sts.open.url)) params)
90
"Execute open url command from PARAMS data."
91
- (browse-url (seq-first params)))
+ (browse-url (lsp-seq-first params)))
92
93
94
(_server (_command (eql sts.showHoverAtPosition)) params)
95
"Execute show hover at position command with PARAMS data."
96
- (goto-char (lsp--position-to-point (seq-first params)))
+ (goto-char (lsp--position-to-point (lsp-seq-first params)))
97
(lsp-describe-thing-at-point))
98
99
(defun lsp-java-boot--sts-hightlight (workspace params)
0 commit comments