-
Notifications
You must be signed in to change notification settings - Fork 23
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
Feature Request: Find/search within the console output #212
Comments
I wasn't sure if this belongs here or in https://github.com/JunoLab/atom-julia-client. I would've guessed it belongs in the other repo, but the "New Issue" page says:
😁 |
xterm.js has a addon for this here, but we'll still need to write our own UI for that. Re-using Atom's
Yeah, I'd rather have all user issues/feature requests here so I don't lose track of them spread across 5 repos :) |
Ah okay cool! So Xterm.js is the package we use to implement the terminal in the Console pane? Neat. I can look at that and see what i can do.. |
--- okay after some digging I see that Xterm.js is what's used in atom-ink to implement the terminal. So basically we'd have to just expose xterm.js's search addon API through the UI in Ink? That seems reasonable!
Bummer. I'll look into it a bit more; ideally we could hook them up so that pressing "find next" on the Atom |
Fwiw, here's how the the It calls So, maybe we could hook into the |
Cool! So i think the I have a first-pass rough implementation here: NHDaly/atom-ink@6c006fe Next I'm going to look into the |
(The |
Feature Request:
Related to: JunoLab/atom-julia-client#330
One of the only reasons I ever switch back to a terminal and the regular julia REPL is when i want to search through my REPL's terminal output. (As one example, when printing the
@code_typed
of a big function, and i want to find a specific function call within it, i find myself switching back to the terminal, opening Julia, and rerunning all the commands I need to get me back to that output.)It'd be super great if the default Atom
find-and-replace
pane was able to search the contents of the Console! But if that's not possible, I guess having our own searchbox that opens on cmdf would also work.The text was updated successfully, but these errors were encountered: