File tree Expand file tree Collapse file tree 3 files changed +13
-9
lines changed
lib/language_server/providers/execute_command Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 66
77- Fixed regression in debugger not respecting ` MIX_ENV ` and ` MIX_TARGET `
88- Silence output from ` dialyxir ` making client disconnect from the server on elixir < 1.14
9+ - Avoid serializing PID to JSON
910
1011### v0.14.4: 20 April 2023
1112
Original file line number Diff line number Diff line change @@ -5,10 +5,13 @@ defmodule ElixirLS.LanguageServer.Providers.ExecuteCommand.Restart do
55
66 @ impl ElixirLS.LanguageServer.Providers.ExecuteCommand
77 def execute ( _args , _state ) do
8- Task . start ( fn ->
9- Logger . info ( "ElixirLS will restart" )
10- Process . sleep ( 1000 )
11- System . stop ( 0 )
12- end )
8+ { :ok , _pid } =
9+ Task . start ( fn ->
10+ Logger . info ( "ElixirLS will restart" )
11+ Process . sleep ( 1000 )
12+ System . stop ( 0 )
13+ end )
14+
15+ { :ok , % { } }
1316 end
1417end
Original file line number Diff line number Diff line change 11defmodule ElixirLS.LanguageServer.Mixfile do
22 use Mix.Project
33
4- @ version ( __DIR__
5- |> Path . join ( "../../VERSION" )
6- |> File . read! ( )
7- |> String . trim ( ) )
4+ @ version __DIR__
5+ |> Path . join ( "../../VERSION" )
6+ |> File . read! ( )
7+ |> String . trim ( )
88
99 def project do
1010 [
You can’t perform that action at this time.
0 commit comments