-
-
Notifications
You must be signed in to change notification settings - Fork 145
Svelte 5 REPL: reload button #1126
New issue
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
Comments
Because the contents of all of the files are serialized into the URL, you can already just use the browser's refresh button for this, which seems sufficient to me. |
Reloading the browser page will trigger re-fetching resources (compiler, bundler, imported modules, etc) and their initialization. The workaround with a space is more efficient and sometimes even faster. |
I can relate to this. I'd even venture to suggest intercepting Cmd+R/Ctrl-R keypresses while the output window is focused (maybe that's a step too far). Design question though: where should the button go? It doesn't really make sense to have it in the space to the right of 'AST Output' since it only applies to the 'Result' tab, and it can't obscure the content. Maybe inside the 'Result' button? |
I also think it should be inside the Result button. Otherwise, it becomes unclear what it reloads. |
It should be moved to svelte.dev repo. |
Describe the problem
While messing with REPLs, I often want to "reload the page" / reset the state. However, the only way to do this currently is to add or remove a meaningless space in a code.
Describe the proposed solution
Add a button that "reloads the page" / resets the state.
Importance
nice to have
The text was updated successfully, but these errors were encountered: