Sorry for this very basic question but how is it possible to copy an error message from Juno
in Atom
using Julia
. I tried to highlight the message but as soon as i hit CMD + c
(on a Mac
) the highlighting disappears and nothing is being copied
Asked
Active
Viewed 147 times
0

ecjb
- 5,169
- 12
- 43
- 79
-
Is your copy/paste working normally for other apps? I see several [comments about OSX copy/paste issues](http://osxdaily.com/2018/02/02/fix-copy-paste-not-working-mac/). – rickhg12hs Sep 23 '18 at 21:56
1 Answers
2
I normally paste the command to the Atom Julia console and copy the error message from the console. One advantage of this is that the console displays error message opposed to an Error
object displayed by Atom.
However, on Windows this also works:
- hold left-mouse button to make the selection, do not release the mouse button
- press Ctr+C
while still holding the mouse button

Przemyslaw Szufel
- 40,002
- 3
- 32
- 62
-
Thank you @PrzemyslawSzufel. I was used to the hydrogen environment with python where you can indeed copy paste the message (but you don't have a console) – ecjb Sep 23 '18 at 22:07
-
It helps a lot. However it could still be convenient to be able to copy directly the message from the juno – ecjb Sep 23 '18 at 22:14