From b3d0e9dc3bd9dd399d27830de33688126baa69c2 Mon Sep 17 00:00:00 2001 From: nasa9084 Date: Thu, 7 Aug 2025 15:13:42 +0900 Subject: [PATCH] Fix option name in Emacs lsp-mode config example --- scripts/lsp-kotlin-emacs-lsp-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lsp-kotlin-emacs-lsp-mode.el b/scripts/lsp-kotlin-emacs-lsp-mode.el index 123a505..9d86fce 100644 --- a/scripts/lsp-kotlin-emacs-lsp-mode.el +++ b/scripts/lsp-kotlin-emacs-lsp-mode.el @@ -1,5 +1,5 @@ (defun kotlin-lsp-server-start-fun (port) - (list "kotlin-lsp.sh" "--port" (number-to-string port))) + (list "kotlin-lsp.sh" "--socket" (number-to-string port))) (with-eval-after-load 'lsp-mode (add-to-list 'lsp-language-id-configuration '(kotlin-mode . "kotlin")) @@ -13,4 +13,4 @@ :server-id 'kotlin-jb-lsp ) ) - ) \ No newline at end of file + )