-
-
Notifications
You must be signed in to change notification settings - Fork 7k
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
Add copy button to the serial monitor #8640
base: master
Are you sure you want to change the base?
Conversation
@ArduinoBot build this please |
✅ Build completed. Please test this code using one of the following: ⬇️ http://downloads.arduino.cc/javaide/pull_requests/arduino-PR-8640-BUILD-835-linux32.tar.xz ℹ️ The |
e4a7ac1
to
97e979c
Compare
Rebased onto master (force-push). No additional changes were made. |
I like the context menu idea. It seems like a fairly intuitive UI. |
My usual solution to this is to turn off autoscroll, then use a crtl-A, crtl-C. It makes me think it's worth adding a keyboard control for autoscroll, so you could use keys to do this all the way through. Would be better for accessibility too. context menus can be a pain for screen readers. |
Add a copy button to the serial monitor that copies the text in the serial monitor output area to the system clipboard.
97e979c
to
14fb227
Compare
Rebased this PR onto master. |
|
Add a copy button to the serial monitor that copies the text in the serial monitor output area to the system clipboard. This is useful since ctrl-a + ctrl-c does not work when the serial monitor is spammed at a high rate.
Related: arduino/arduino-ide#1729.