You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current implementation, the $LINENO variable contained in the prompt string ($PS1 and $PS2) always expands to 1. This is because the expansion of the $LINENO parameter occurs in the first line of the prompt string variable value, which is parsed as text.
A more intuitive behavior would be to expand $LINENO to the line number in the current lexer context, but the current architecture does not allow this because we now create a separate lexer to parse the text.
The text was updated successfully, but these errors were encountered:
In the current implementation, the
$LINENO
variable contained in the prompt string ($PS1
and$PS2
) always expands to1
. This is because the expansion of the$LINENO
parameter occurs in the first line of the prompt string variable value, which is parsed as text.A more intuitive behavior would be to expand
$LINENO
to the line number in the current lexer context, but the current architecture does not allow this because we now create a separate lexer to parse the text.The text was updated successfully, but these errors were encountered: