Skip to content

Commit ec83ec1

Browse files
authored
Remove references to being a fork (#213)
Fixes #212
1 parent 3095d2d commit ec83ec1

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,17 @@
44
* Operating system:
55
* Editor or IDE name (e.g. Emacs/VSCode):
66
* LSP Client name:
7-
* If using VSCode, are you using "ElixirLS Fork: Elixir support and debugger" (note that it has "Fork" in the name)?
7+
* If using VSCode, are you using "ElixirLS: Elixir support and debugger"?
88

99
### Troubleshooting
1010

1111
- [ ] Restart your editor (which will restart ElixirLS) sometimes fixes issues
1212
- [ ] Stop your editor, remove the entire `.elixir_ls` directory, then restart your editor
13-
* NOTE: This will cause you to have to re-run the entire dialyzer build
13+
* NOTE: This will cause you to have to re-run the dialyzer build for your project
1414

15-
### Crash report template
15+
### Logs
1616

17-
_Delete this section if not reporting a crash_
18-
19-
1. If using a client other than VS Code, please try VSCode's "ElixirLS Fork: Elixir support and debugger" extension. Does it reproduce your failure?
17+
1. If using a client other than VS Code, please try VSCode's "ElixirLS: Elixir support and debugger" extension. Does it reproduce your failure?
2018
2. Create a new Mix project with `mix new empty`, then open that project with VS Code and open an Elixir file. Is your issue reproducible on the empty project? If not, please publish a repo on Github that does reproduce it.
2119
3. Check the output log by opening `View > Output` and selecting "ElixirLS" in the dropdown. Please include any output that looks relevant. (If ElixirLS isn't in the dropdown, the server failed to launch.)
2220
4. Check the developer console by opening `Help > Toggle Developer Tools` and include any errors that look relevant.

apps/debugger/lib/debugger/cli.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defmodule ElixirLS.Debugger.CLI do
66
WireProtocol.intercept_output(&Output.print/1, &Output.print_err/1)
77
Launch.start_mix()
88
Application.ensure_all_started(:debugger, :permanent)
9-
IO.puts("Started ElixirLS Fork debugger v#{Launch.debugger_version()}")
9+
IO.puts("Started ElixirLS debugger v#{Launch.debugger_version()}")
1010
Launch.print_versions()
1111
WireProtocol.stream_packets(&Server.receive_packet/1)
1212
end

apps/language_server/lib/language_server/cli.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ defmodule ElixirLS.LanguageServer.CLI do
77
Launch.start_mix()
88

99
Application.ensure_all_started(:language_server, :temporary)
10-
IO.puts("Started ElixirLS Fork v#{Launch.language_server_version()}")
10+
IO.puts("Started ElixirLS v#{Launch.language_server_version()}")
1111
Launch.print_versions()
1212

1313
Mix.shell(ElixirLS.LanguageServer.MixShell)

0 commit comments

Comments
 (0)