Skip to content
Open
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
13 changes: 12 additions & 1 deletion lsp-java.el
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,21 @@ pass a list, only a vector."
:lsp-path "java.signatureHelp.enabled")

(lsp-defcustom lsp-java-implementations-code-lens-enabled nil
"Enable/disable the implementations code lens."
"Enable/disable the implementations code lens. For old version of jdtls."
:type 'boolean
:lsp-path "java.implementationsCodeLens.enabled")

(lsp-defcustom lsp-java-implementation-code-lens "none"
"Configure the implementations code lens.

\"none\" means disabled.
ref: https://github.com/eclipse-jdtls/eclipse.jdt.ls/blob/master/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/CodeLensHandler.java#L234"
:type '(choice (const "none")
(const "all")
(const "types")
(const "methods"))
:lsp-path "java.implementationCodeLens")

(lsp-defcustom lsp-java-configuration-maven-user-settings nil
"Path to Maven's settings.xml"
:type '(choice (string)
Expand Down