Quote support wasn't working in the web version because a standard input box was being used and that doesn't allow multiple lines.
The form was changed to a textarea. While that works, it can be a bit clunky. The user can expand the size of that box whenever they want. And, multiple lines are only supported when text is pasted in. Normally the enter key is intercepted to submit the content.
Proposed idea:
- Switch back to the standard input which only allows a single line of text
- When a user enters in a quote command line
quote EOF, then display a textarea instead
- When the textarea is active, don't submit the content when enter is entered. Check instead to see if the last line is the end of quote marker or something along those lines
- Switch back to a standard input when the quote marker is seen
Quote support wasn't working in the web version because a standard input box was being used and that doesn't allow multiple lines.
The form was changed to a textarea. While that works, it can be a bit clunky. The user can expand the size of that box whenever they want. And, multiple lines are only supported when text is pasted in. Normally the enter key is intercepted to submit the content.
Proposed idea:
quote EOF, then display a textarea instead