Hi, everyone,
I am using Debugger.jl in VS Code REPL. It seems that there is a problem of the @enter macro, as following code shows:
julia> using Debugger
julia> foo(x) = x^2
foo (generic function with 1 method)
julia> @enter foo(2)
ERROR: UndefVarError: @enter not defined
Stacktrace:
[1] top-level scope
[2] include_string(::Function, ::Module, ::String, ::String)
at .\loading.jl:1088
julia>
I am using Julia 1.5.1 and Debugger version 0.6.6
How could I avoid this error message and use Debugger in VS Code REPL?