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 a62fb20 commit f61671bCopy full SHA for f61671b
clients/lsp-nim.el
@@ -77,11 +77,18 @@
77
:group 'lsp-nim
78
:package-version '(lsp-mode . "8.0.1"))
79
80
+(defcustom lsp-nim-lsp "nimlsp"
81
+ "Path to `nimlsp'"
82
+ :type 'number
83
+ :group 'lsp-nim
84
+ :package-version '(lsp-mode . "8.0.1"))
85
+
86
(lsp-register-client
- (make-lsp-client :new-connection (lsp-stdio-connection "nimlsp")
87
+ (make-lsp-client :new-connection (lsp-stdio-connection
88
+ (lambda () lsp-nim-lsp))
89
:activation-fn (lsp-activate-on "nim")
90
:priority -1
- :server-id 'nimls))
91
+ :server-id 'nimlsp))
92
93
94
(make-lsp-client :new-connection (lsp-stdio-connection
0 commit comments