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
when I resize an terminal that using xterm/addon-fit over and over again it becomes uh.
xterm/addon-fit
<!DOCTYPE html> <html data-theme="dark"> <head> <meta charset="UTF-8"> <meta name="darkreader-lock"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title data-i18n="terminal_assistant.title"></title> <link href="https://cdn.jsdelivr.net/npm/daisyui/daisyui.css" rel="stylesheet" type="text/css" /> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser"></script> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/xterm/css/xterm.min.css"> </head> <body class="flex flex-col h-screen items-center justify-center p-4"> <div id="terminal" class="mockup-code border"></div> <script type="module"> import { Terminal } from 'https://esm.run/xterm' import { WebLinksAddon } from 'https://esm.run/@xterm/addon-web-links' import { ClipboardAddon } from 'https://esm.run/@xterm/addon-clipboard' import { FitAddon } from 'https://esm.run/@xterm/addon-fit' const terminal = new Terminal({ linkHandler: { activate(event, text, range) { if (event.button === 2) return event.preventDefault() window.open(text, '_blank') } }, cursorBlink: true }) const fiter = new FitAddon() terminal.loadAddon(fiter) terminal.loadAddon(new WebLinksAddon()) terminal.loadAddon(new ClipboardAddon()) terminal.open(document.getElementById('terminal')) fiter.fit() window.addEventListener('resize', () => { fiter.fit() }) terminal.element.addEventListener('contextmenu', async (event) => { event.preventDefault() const selectedText = terminal.getSelection() if (selectedText) { await navigator.clipboard.writeText(selectedText) terminal.clearSelection() } else terminal.paste(await navigator.clipboard.readText()) }) </script> </body> </html>
(Original code: https://github.com/steve02081504/fount/blob/master/src/public/shells/shellassist/index.html) 2. resize it over and over again.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
when I resize an terminal that using
xterm/addon-fit
over and over again it becomes uh.Details
Steps to reproduce
(Original code: https://github.com/steve02081504/fount/blob/master/src/public/shells/shellassist/index.html)
2. resize it over and over again.
The text was updated successfully, but these errors were encountered: