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 39e2bfe commit 13480c3Copy full SHA for 13480c3
lsp-julia.el
@@ -288,6 +288,17 @@ body."
288
(lsp-julia--symbol-server-store-path-to-jl) ");"
289
" run(server);")))
290
291
+(defun lsp-julia-update-languageserver ()
292
+ "The command to update the Julia Language Server."
293
+ (interactive)
294
+ (apply 'start-process
295
+ "lsp-julia-languageserver-updater"
296
+ "*lsp-julia-languageserver-updater*"
297
+ lsp-julia-command
298
+ (append lsp-julia-flags
299
+ '("-e import Pkg; println(Pkg.project().path); Pkg.update()"))
300
+ ))
301
+
302
(defconst lsp-julia--handlers
303
'(("window/setStatusBusy" .
304
(lambda (w _p)))
0 commit comments