Hi,
The ^
is the escape character. It make the following symbol be treated as ordinary text. It's usually prefixed to the special characters & \ < > ^ |
. It could also escape the Carriage Return + Line Feed (CR/LF) at the end of a line to split a line into multiple lines.
In your case ^_
is the same to _
as _
is not a special character and there's no character to be escaped by the second ^
. That's why you see the prompt "More?".
Best Regards,
Ian
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.