Multi-line pasting is broken
Author: drusepthCreated Jul 3, 2018Updated Apr 19, 2019
Steps to reproduce:
- Paste the following code into the terminal
echo "Hello"
echo "World"Observed behavior:
The lines are concatenated together. What gets run is echo "Hello" echo "World".
Expected behavior:
The lines are run in sequence, with the first line run first and then the second line run after the first has completed.
Source: railsware/upterm