Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-10-11 Thread Raul Durand
It works ok for me. Only issue is that Juno does not point the source line where an error occurs. It just points the file name. Great work though.

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-10-11 Thread Mike Innes
That sounds like a bug – if you can it'd be great to open an issue with more info (perhaps a screenshot/example) so I can look into it. On 11 October 2014 15:20, Raul Durand raul.dur...@gmail.com wrote: It works ok for me. Only issue is that Juno does not point the source line where an error

[julia-users] Re: GSoC: Julia IDE Progress update

2014-08-06 Thread Alan Chan
Very helpful indeed. Thanks On Monday, August 4, 2014 6:14:54 PM UTC-4, G. Patrick Mauroy wrote: I just went through the evaluation process of those 3. JuliaStudio was a turn off for me because I could not run against my 0.3rc installed version. It looks like you depend on the version

[julia-users] Re: GSoC: Julia IDE Progress update

2014-08-04 Thread Uwe Fechner
I tried both LightTable and JuliaStudio. LightTable is lacking an integrated console, which is a pity. But on the other hand you can evaluate single expressions in the code editor directly. The released version of JuliaStudio does not support Julia 0.3rc yet, so you have to compile it yourself,

[julia-users] Re: GSoC: Julia IDE Progress update

2014-07-07 Thread Aerlinger
I absolutely love Jewel and where this project is headed. Thanks for all the effort! On Sunday, June 29, 2014 2:46:21 AM UTC-7, Mike Innes wrote: Hey all, I've released the latest version of the Julia environment https://github.com/one-more-minute/Jupiter-LT I'm building. There are a

[julia-users] Re: GSoC: Julia IDE Progress update

2014-07-01 Thread Alireza Nejati
FWIW, I did a huge upgrade on my system and now that error goes away, but I still don't have autocomplete. Anyway, it's not that important, everything else is usable and nice. On Sunday, June 29, 2014 9:46:21 PM UTC+12, Mike Innes wrote: Hey all, I've released the latest version of the

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Michael Hatherly
For the tab issue have you tried adding *:editor.julia [(:lt.objs.editor/tab-settings false 4 4)]* to the *{:+* section of *user.behaviours*? It needs to be *:editor.julia* to actually override Jewel's settings. If that doesn't work would you be able to post your behaviours file to a gist or

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Ivo Balbaert
Hi Mike, It looks very nice, but I still have an issue. I followed all recommendations, have updated all plugins, on startup after Spinning up a Julia client, I always get the error: Couldn't connect to Julia ERROR: latex_symbols not definedin anonymous at no file in include at boot.jl:244

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Michael Hatherly
Hi Ivo, Which version of julia are you using, v0.2.1 or v0.3? latex_symbols looks like it's only a v0.3 feature. -- other Mike On Monday, 30 June 2014 08:56:03 UTC+2, Ivo Balbaert wrote: Hi Mike, It looks very nice, but I still have an issue. I followed all recommendations, have updated

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Ivo Balbaert
Hi Mike, I use : julia version 0.3.0-prerelease+2809 on Windows 8 - 64 bit Ivo Op maandag 30 juni 2014 09:00:09 UTC+2 schreef Michael Hatherly: Hi Ivo, Which version of julia are you using, v0.2.1 or v0.3? latex_symbols looks like it's only a v0.3 feature. -- other Mike On Monday, 30

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Michael Hatherly
Could you try the latest prerelease from the website? Looks like 2809 was prior to the latex additions. On Monday, 30 June 2014 13:21:57 UTC+2, Ivo Balbaert wrote: Hi Mike, I use : julia version 0.3.0-prerelease+2809 on Windows 8 - 64 bit Ivo Op maandag 30 juni 2014 09:00:09 UTC+2

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Mike Innes
Alireza – I think you've won the weirdest error competition. This looks like some kind of low-level graphics issue, so if it's caused by the plugin something very strange is going on. Does it still happen when Julia is disconnected? What about if you type in a non-Julia file? The other Mike is

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Mike Innes
PSA: I've just realised that installing the plugin doesn't change the default theme as I had thought. I've added an instruction to the readme, but if you installed before that you'll want to see here https://github.com/one-more-minute/Jupiter-LT/wiki/Settings-%26-Configuration to change the theme

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Johan Sigfrids
I can't get Gadfly to plot anything. It gives me this error: WARNING: Jewel: pad_inner not defined in render at C:\Users\admin\.julia\v0.3\Gadfly\src\Gadfly.jl:643 in writemime at C:\Users\admin\.julia\v0.3\Gadfly\src\Gadfly.jl:736 in sprint at io.jl:465 in display_result at

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Mike Innes
Ok, I need to correct my instructions: to get interactivity in Gadfly you must use Pkg.checkout(Compose), not Pkg.checkout(Gadfly). Checking out Gadfly too won't hurt, but isn't mandatory. I can't guarantee that either will be stable so if there are problems just call Pkg.free(Compose) (same

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Johan Sigfrids
Yes now I got it working. Thank you. On Monday, June 30, 2014 5:19:02 PM UTC+3, Mike Innes wrote: Ok, I need to correct my instructions: to get interactivity in Gadfly you must use Pkg.checkout(Compose), not Pkg.checkout(Gadfly). Checking out Gadfly too won't hurt, but isn't mandatory. I

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Mike Innes
No problem, glad to help. I just released new versions of both the package and plugin with some more Windows fixes. On Monday, 30 June 2014 15:31:28 UTC+1, Johan Sigfrids wrote: Yes now I got it working. Thank you. On Monday, June 30, 2014 5:19:02 PM UTC+3, Mike Innes wrote: Ok, I need to

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Ivo Balbaert
OK! It works with the latest prerelease-version, thank you. Ivo Op maandag 30 juni 2014 13:52:39 UTC+2 schreef Michael Hatherly: Could you try the latest prerelease from the website? Looks like 2809 was prior to the latex additions. On Monday, 30 June 2014 13:21:57 UTC+2, Ivo Balbaert

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Mike Innes
Sure – basically, Jewel is the core plugin which provides most of the functionality, built out of the Jewel.jl package and the Jewel plugin for Light Table (although Jewel.jl can support other editors/IDEs in principle, so if anyone wants to borrow the autocompletion etc. just let me know). It's

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread yuuki
Cool, very nice work. I had no problem install it on windows 7, but I have to say I'm quite confused by Light Table, it seems interesting though. I got these data display but I haven't find yet how to close them ... http://i.imgur.com/uNIxePy.png How easy to contribute to the project, add

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Michael Hatherly
For clearing the inline results you can open the command panel ctrl-space and type clear inline results. You can also add keybindings for any frequently used commands. Here's my config files https://gist.github.com/MichaelHatherly/05832061e01f423ceaa7 for LightTable, perhaps they'll be helpful

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Mike Innes
Great – if you want to minimise results just double click them, or right click and select remove result to close them (or use the clear inline results command to get rid of all of them at the same time). I really recommend having a look through the wiki

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-30 Thread Mike Innes
The only thing I can really suggest is that if it is a graphics issue it's most likely to do with Chromium, so searching for that might turn more up. You could also open an issue in the Light Table repo, but I wouldn't hold my breath waiting for a response. As for the autocompletion – you've

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread Johan Sigfrids
Do you need to add some package Julia side to make this work? On Sunday, June 29, 2014 12:46:21 PM UTC+3, Mike Innes wrote: Hey all, I've released the latest version of the Julia environment https://github.com/one-more-minute/Jupiter-LT I'm building. There are a whole bunch of

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread Mike Innes
Technically you do need the Jewel.jl package, but this should be installed for you when the client boots the first time. If this isn't working you can of course run Pkg.add(Jewel) by hand – let me know if there are any issues with that and I'll see what I can do. On 29 June 2014 18:22, Johan

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread Johan Sigfrids
Well, apparently it had installed Jewel, bur running Pkg.update() did install a update for it. It is still throwing an error though: ERROR: connect: address not available (EADDRNOTAVAIL) in connect! at socket.jl:583 in ltconnect at

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread J Luis
I cannot make it work either (local Julia build Win7) Just try a *println(blabla)* WARNING: Jewel: key not found: module in getindex at dict.jl:615 in anonymous at C:\j\.julia\v0.3\Jewel\src\LightTable\completions.jl:4 WARNING: Jewel: key not found: module in getindex at dict.jl:615 in

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread Mike Innes
I'm sorry that you're having problems – unfortunately Windows has been a big source of issues, but making the process smoother is a high priority. At some point I'll get an installer/bundle together which should help. J Luis, in your case I suspect that Light Table hasn't downloaded the latest

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread Johan Sigfrids
I update all by Mike Innes plugins (none of which were up to date) and now it works. :D On Sunday, June 29, 2014 9:24:45 PM UTC+3, Mike Innes wrote: I'm sorry that you're having problems – unfortunately Windows has been a big source of issues, but making the process smoother is a high

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread J Luis
Mike, yes you were right thanks. Updated ad now it works (I had the impression that it warned me to update some time ago so didn't bother to check it now) Joaquim Domingo, 29 de Junho de 2014 19:40:19 UTC+1, Johan Sigfrids escreveu: I update all by Mike Innes plugins (none of which were up

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread Mike Innes
Brilliant, I'll add a note to the instructions so that others don't get caught out by this. Light Table automatically installs dependencies of a plugin, but seems to only install the minimum required version as opposed to the most recent, which is really odd behavior. On 29 June 2014 19:52, J

Re: [julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread niclas . carlsson
Thanks Mike, it looks very nice. FWIW, I could only get it to work on Windows 8 by including julia in the system path. If omitted from the path, LT could not connect to Julia, and there was an error bootstrap.js[17085]: Error: spawn ENOENT true on the LT console. In Process Monitor it looked

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread Alireza Nejati
I'm on 64-bit linux by the way On Sunday, June 29, 2014 9:46:21 PM UTC+12, Mike Innes wrote: Hey all, I've released the latest version of the Julia environment https://github.com/one-more-minute/Jupiter-LT I'm building. There are a whole bunch of improvements but the main ones are: -

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread Alireza Nejati
Nice work, looks much better than my previous Sublime setup. One issue I'm having is that autocomplete doesn't seem to be working, and I'm repeatedly getting: [8725:0630/141807:ERROR:vsync_provider.cc(70)] glXGetSyncValuesOML should not return TRUE with a media stream counter of 0. And It

[julia-users] Re: GSoC: Julia IDE Progress update

2014-06-29 Thread Alireza Nejati
Another issue: I'm not sure if this is Jupiter-specific, but it overrides my tab settings. It changes all the tabs in my files to 2 spaces, which is horrendous. I tried changing lt.objs.editor/tab-settings in all 3 of default behaviors, user behaviors, and jupiter behaviors, but no dice. On