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
Hello, thanks for this awesome component 🙂
I tried to implement the type-text from advanced commands examples which use the edit-line built in command that is supposed to edit the last line.
type-text
edit-line
commands={{ 'type-text': (args, print, runCommand) => { const text = args.slice(1).join(' ') print('') for (let i = 0; i < text.length; i += 1) { setTimeout(() => { runCommand(`edit-line ${text.slice(0, i + 1)}`) }, 100 * i) } }, }}
But instead of getting the last line updating, it return a new line at each iteration.
> type-text hello h he hel hell hello
Any idea of what could cause this? 🤔
The text was updated successfully, but these errors were encountered:
@Alex100dre i got the same issue did you fix it ?
Sorry, something went wrong.
Sadly not. I didn't spent time on it for the moment.
Let me know if you find something.
I'll do the same on my side.
any solution?
No branches or pull requests
Hello, thanks for this awesome component 🙂
I tried to implement the
type-text
from advanced commands examples which use theedit-line
built in command that is supposed to edit the last line.But instead of getting the last line updating, it return a new line at each iteration.
> type-text hello h he hel hell hello
Any idea of what could cause this? 🤔
The text was updated successfully, but these errors were encountered: