Skip to content
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

Referl new comm #3

Merged
merged 9 commits into from
Feb 6, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Specifyng case mathces and no-match cases
  • Loading branch information
robertfiko committed Feb 6, 2022
commit a5748203006b35129f8ff2d12ad7221d376c0896
4 changes: 2 additions & 2 deletions apps/els_lsp/src/els_refactorerl_diagnostics.erl
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ run(Uri, RecursionDepth) when RecursionDepth < ?MAX_RECURSION_DEPTH ->
case filename:extension(Uri) of
<<".erl">> ->
case els_refactorerl_utils:referl_node() of
disabled ->
{error, _} ->
[];
_ ->
{ok, _} ->
case add(Uri) of
busy ->
timer:sleep(1000),
Expand Down