We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example:
/run echo 1 echo 2
Outputs nothing
Expected output:
1 2
The text was updated successfully, but these errors were encountered:
/r echo 1 && echo 2?
/r echo 1 && echo 2
Sorry, something went wrong.
@hrvstr Well, obviously that will work, and use semi colons will also work, but the issue title says 'multiline'
Okay, I just wanted to point out options to get the desired results.
/r echo 1 $'\n' 2 $'\n' 3 $'\n' 4 ...
That's my solution.
No branches or pull requests
For example:
Outputs nothing
Expected output:
The text was updated successfully, but these errors were encountered: