Closed zachallaun closed 3 months ago
The following:
@spec my_function(String.t()) :: term() def|
Completes to:
@spec my_function(String.t()) :: term() def name() do end
If the completion is proceeded by a @spec, the function name and arity could be inferred:
@spec
@spec my_function(String.t()) :: term() def my_function(arg1) do end
The following:
Completes to:
If the completion is proceeded by a
@spec
, the function name and arity could be inferred: