Skip to content

Commit 2e228b8

Browse files
committed
improve wildcard regex
1 parent 021526c commit 2e228b8

File tree

1 file changed

+1
-1
lines changed
  • apps/debug_adapter/lib/debug_adapter

1 file changed

+1
-1
lines changed

apps/debug_adapter/lib/debug_adapter/server.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2557,7 +2557,7 @@ defmodule ElixirLS.DebugAdapter.Server do
25572557
module_name
25582558
|> prefix_module_name()
25592559
|> Regex.escape()
2560-
|> String.replace("\\*", ~s(.+))
2560+
|> String.replace("\\*", ~s(.*))
25612561
|> Regex.compile!()
25622562
end
25632563

0 commit comments

Comments
 (0)