Re: Clojure support for Visual Studio Code

2016-09-25 Thread Andrey Lisin
Hi Michael, I agree with you. What makes me optimistic is that VSCode has a built-in terminal, but I don't know if it is possible to interact with it through the API. However, as you said, it all depends on a user's background. I know that Vim Fireplace plugin users are used to running a

Re: Clojure support for Visual Studio Code

2016-09-25 Thread Andrey Lisin
Hi Boris, please, see my answers below. On Saturday, September 24, 2016 at 3:37:38 PM UTC+6, Boris V. Schmid wrote: > > Just started using your plugin. Thanks. So far so good. > > Two questions. > > 1. Every time I eval something, or have an error, a bar appears on top, > like this: "[Info]

Re: Clojure support for Visual Studio Code

2016-09-24 Thread Michael Ball
On Tuesday, September 20, 2016 at 1:53:31 AM UTC-7, Andrey Lisin wrote: > > 2. I will investigate if it is possible to run repl from within VSCode. On > the other hand, this behavior can be unexpected for some users. I believe, > many users are willing to connect to a remote repl and need an

Re: Clojure support for Visual Studio Code

2016-09-24 Thread Boris V. Schmid
Just started using your plugin. Thanks. So far so good. Two questions. 1. Every time I eval something, or have an error, a bar appears on top, like this: "[Info] Successfully Compiled[Close]". They don't fade away automatically, and stack, meaning that they block the top part of the

Re: Clojure support for Visual Studio Code

2016-09-20 Thread Andrey Lisin
Hi Michael, 1. Showing a docstring on hover is a standard VSCode behavior. I don't think any extension should change it without a good reason. 2. I will investigate if it is possible to run repl from within VSCode. On the other hand, this behavior can be unexpected for some users. I believe,

Re: Clojure support for Visual Studio Code

2016-09-19 Thread Ikuru Kanuma
Thanks for the tips, Andry & Michael! Will investigate the rabbit hole deeper when I have time (Tried you suggestion but no success...), but thanks Andrey for releasing it into the market place because now I can try it out in the mean while. Cheers, -- You received this message because you

Re: Clojure support for Visual Studio Code

2016-09-19 Thread Michael Ball
> > On Saturday, September 17, 2016 at 4:32:39 AM UTC+6, Michael Ball wrote: >> >> >> - Explicit docs/instructions on how to start and connect to the repl >> would be good. I was able to get it connected but it was unclear if the >> repl should be started from within VS code, or from a terminal

Re: Clojure support for Visual Studio Code

2016-09-19 Thread Andrey Lisin
Uploaded the extension to the Visual Studio Code marketplace. Now you can install using VSCode 'Extensions' menu. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new

Re: Clojure support for Visual Studio Code

2016-09-18 Thread Andrey Lisin
I've just published the new release that addresses the issues Michael pointed out. I've also added the new 'Eval and show the result' command which evaluates a file and prints the result into a VSCode output channel. Feel free to try it out. You can download the new release here:

Re: Clojure support for Visual Studio Code

2016-09-18 Thread Andrey Lisin
Hi Ikuru, please, see my comments below. On Sunday, September 18, 2016 at 6:52:47 AM UTC+6, Ikuru Kanuma wrote: > > > I guess the installation part is then something specific to the ubuntu > flavor(I am using ubuntu-mate) I am using/ what ever it could be. > (I also did try to open the file

Re: Clojure support for Visual Studio Code

2016-09-18 Thread Andrey Lisin
Hi Michael, First of all, I would like to thank you for your feedback, it helps a lot. See my comments inlined. On Saturday, September 17, 2016 at 4:32:39 AM UTC+6, Michael Ball wrote: > > > - Explicit docs/instructions on how to start and connect to the repl would > be good. I was able to get

Re: Clojure support for Visual Studio Code

2016-09-17 Thread Michael Ball
Hi Ikuru, did you install VS code from your package manager and install the code-oss package? I ask because when I first installed VS code on Solus Linux I used the one from the package manager which was the "code-oss package". Unfortunately I found out later that extensions are not supported

Re: Clojure support for Visual Studio Code

2016-09-17 Thread Ikuru Kanuma
Thanks for the reply Andrey! I guess the installation part is then something specific to the ubuntu flavor(I am using ubuntu-mate) I am using/ what ever it could be. (I also did try to open the file from the menu, but same story as dragging and dropping). Also my vs-code installation is a bit

Re: Clojure support for Visual Studio Code

2016-09-16 Thread Michael Ball
Ok was just able to try it out briefly on OSX. - Installation went smoothly, no problems. - Explicit docs/instructions on how to start and connect to the repl would be good. I was able to get it connected but it was unclear if the repl should be started from within VS code, or from a terminal

Re: Clojure support for Visual Studio Code

2016-09-16 Thread Andrey Lisin
Sorry for the mess in the previous message. This code should be put into ~/.lein/profiles.clj {:user {:plugins [[cider/cider-nrepl "0.12.0-SNAPSHOT"]] :dependencies [[org.clojure/tools.nrepl "0.2.12"]]}} пятница, 16 сентября 2016 г., 17:32:54 UTC+6 пользователь Andrey Lisin написал:

Re: Clojure support for Visual Studio Code

2016-09-16 Thread Andrey Lisin
Hi Ikuru, I've just checked and dragging and dropping works for me on Ubuntu 16.04, could you try it again? Another option is to open the extension file with "File -> Open" menu. Not sure I understand your question correctly, but to make the extension work you need to add cider-nrepl to a

Re: Clojure support for Visual Studio Code

2016-09-15 Thread Ikuru Kanuma
Hi Andrey, thanks for sharing this great work! - I did want to try it out on an Ubuntu machine, but simply dragging and dropping seemed to not work. Could you perhaps point to an alternative way to install extensions (First time ever touching vs code, so it is hard for me to even google how to

Re: Clojure support for Visual Studio Code

2016-09-15 Thread Michael Ball
This looks great, will definitely try it out this weekend! On Thursday, September 15, 2016 at 4:17:38 AM UTC-7, Andrey Lisin wrote: > > Hey guys, > > I've been working on Clojure support for Visual Studio Code text editor > for a while. The first version is very close to the point when it can