#1309·upterm

Multi-line pasting is broken

Author: drusepthCreated Jul 3, 2018Updated Apr 19, 2019

Steps to reproduce:

  1. Paste the following code into the terminal
bash
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.