-
Notifications
You must be signed in to change notification settings - Fork 617
Multi-line pasting is broken #1309
Comments
@drusepth took a look, it looks like both the scanner and the parser are not taking into consideration the new line character. @le0pard i would say this is a pretty big issue, thoughts? i can take this bug, will get me more acquainted with upterm's shell. i would think it's using some type of operator-precedence parser for executing commands. |
@glyif I am ok, if you want to fix this. Sorry, but don't know, where exactly you need to start. |
Fix for Multi-line pasting is broken #1309
This issue becomes annoying when you copy/paste long commands, like Docker UP with parameters separated by |
Any update on this? Just tried upterm for the first time, loved it immediately, then tried to copy/paste a multi-line command and was let down to see it not work. Pretty much renders it unusable and seems like it would be an easy enough thing to resolve (says the guy complaining but not offering to fix it). |
Steps to reproduce:
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.
The text was updated successfully, but these errors were encountered: