Skip to content

Remove references to being a fork #213

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,17 @@
* Operating system:
* Editor or IDE name (e.g. Emacs/VSCode):
* LSP Client name:
* If using VSCode, are you using "ElixirLS Fork: Elixir support and debugger" (note that it has "Fork" in the name)?
* If using VSCode, are you using "ElixirLS: Elixir support and debugger"?

### Troubleshooting

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

### Crash report template
### Logs

_Delete this section if not reporting a crash_

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?
1. If using a client other than VS Code, please try VSCode's "ElixirLS: Elixir support and debugger" extension. Does it reproduce your failure?
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.
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.)
4. Check the developer console by opening `Help > Toggle Developer Tools` and include any errors that look relevant.
2 changes: 1 addition & 1 deletion apps/debugger/lib/debugger/cli.ex
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule ElixirLS.Debugger.CLI do
WireProtocol.intercept_output(&Output.print/1, &Output.print_err/1)
Launch.start_mix()
Application.ensure_all_started(:debugger, :permanent)
IO.puts("Started ElixirLS Fork debugger v#{Launch.debugger_version()}")
IO.puts("Started ElixirLS debugger v#{Launch.debugger_version()}")
Launch.print_versions()
WireProtocol.stream_packets(&Server.receive_packet/1)
end
Expand Down
2 changes: 1 addition & 1 deletion apps/language_server/lib/language_server/cli.ex
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule ElixirLS.LanguageServer.CLI do
Launch.start_mix()

Application.ensure_all_started(:language_server, :temporary)
IO.puts("Started ElixirLS Fork v#{Launch.language_server_version()}")
IO.puts("Started ElixirLS v#{Launch.language_server_version()}")
Launch.print_versions()

Mix.shell(ElixirLS.LanguageServer.MixShell)
Expand Down