Re: [julia-users] function like read.clipboard?

2014-08-11 Thread Ivar Nesje
Ref: https://github.com/JuliaLang/julia/issues/4245

Re: [julia-users] function like read.clipboard?

2014-08-10 Thread KK Sasa
I have tried this. The clipboard is more basic than Xclipboard. If, for example, I copy a data matrix from excel, julia should have one function to store the same data matrix. Maybe I should write a script on my own all the time?

Re: [julia-users] function like read.clipboard?

2014-08-10 Thread Kevin Squire
Just as an aside, XClipboard will only work on Linux (and even there, it isn't really that useful, as the X Windows clipboard is pretty limited in the information it passes). Cheers, Kevin On Sun, Aug 10, 2014 at 1:42 AM, KK Sasa genwei...@gmail.com wrote: I have tried this. The clipboard

Re: [julia-users] function like read.clipboard?

2014-08-10 Thread Stefan Karpinski
Sorry, it wasn't clear what kind of functionality you were expecting from your email. If you just want basic text copying the clipboard function is fine. I don't know of any cross-platform advanced copy-and-paste support, but such an effort would certainly be possible and welcomed – and

[julia-users] function like read.clipboard?

2014-08-09 Thread KK Sasa
Hi all, Are there functions like R's functions read.clipboard, read.clipboard.csv, or read.clipboard.tab? I noted there is a similar function XClipboard.jl, but it seems not working on my Julia 0.3.0rc2... Thanks.

Re: [julia-users] function like read.clipboard?

2014-08-09 Thread Stefan Karpinski
http://julia.readthedocs.org/en/latest/stdlib/base/#Base.clipboard On Sun, Aug 10, 2014 at 1:35 AM, KK Sasa genwei...@gmail.com wrote: Hi all, Are there functions like R's functions read.clipboard, read.clipboard.csv, or read.clipboard.tab? I noted there is a similar function