Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![MELPA](https://melpa.org/packages/lsp-java-badge.svg)](https://melpa.org/#/lsp-java)
[![Build Status](https://travis-ci.com/emacs-lsp/lsp-java.svg?branch=master)](https://travis-ci.com/emacs-lsp/lsp-java)
[![Build Status](https://github.com/emacs-lsp/lsp-java/workflows/CI/badge.svg?branch=master)](https://github.com/emacs-lsp/lsp-java/actions)
[![Join the chat at https://gitter.im/emacs-lsp/lsp-mode](https://badges.gitter.im/emacs-lsp/lsp-mode.svg)](https://gitter.im/emacs-lsp/lsp-mode?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Emacs Java IDE using [Eclipse JDT Language Server](https://projects.eclipse.org/projects/eclipse.jdt.ls).
Expand Down
4 changes: 2 additions & 2 deletions lsp-java-boot.el
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ Store CALLBACK to use it `sts/highlight'."
(cl-defmethod lsp-execute-command
(_server (_command (eql sts.open.url)) params)
"Execute open url command from PARAMS data."
(browse-url (seq-first params)))
(browse-url (lsp-seq-first params)))

(cl-defmethod lsp-execute-command
(_server (_command (eql sts.showHoverAtPosition)) params)
"Execute show hover at position command with PARAMS data."
(goto-char (lsp--position-to-point (seq-first params)))
(goto-char (lsp--position-to-point (lsp-seq-first params)))
(lsp-describe-thing-at-point))

(defun lsp-java-boot--sts-hightlight (workspace params)
Expand Down
2 changes: 1 addition & 1 deletion lsp-jt.el
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
(lsp-java-with-jdtls
(lsp-send-execute-command
"vscode.java.test.search.items"
(vector (json-serialize `(:uri ,root
(vector (lsp--json-serialize `(:uri ,root
:level ,level
,@(when full-name (list :fullName full-name))))))))

Expand Down