Skip to content
Snippets Groups Projects
Commit be3891f3 authored by dgelessus's avatar dgelessus
Browse files

Add warning to :let help that values are stored as text

parent 5844b876
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ public final class LetCommand implements Command {
@Override
public @NotNull String getHelpBody() {
return "Variables are available in all states and are not affected by machine loads. A variable created by `:let` shadows any identifier from the machine with the same name.";
return "Variables are available in all states and are not affected by machine loads. A variable created by `:let` shadows any identifier from the machine with the same name.\n\n**Note:** Local variables are currently stored in text form. Values must have a syntactically valid text representation, and large values may cause performance issues.";
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment