editors

Discussion about all editors used for Clojure/ClojureScript
dominicm 2016-02-23T19:04:46.000018Z

I'm currently working on async auto complete for vim. I think you were interested in this @juhoteperi. Uses deoplete. Seem fair?

dominicm 2016-02-23T19:06:21.000019Z

Unfortunately I do have to implement my own nrepl connection finder, which makes things difficult

dominicm 2016-02-23T19:07:02.000020Z

Not so bad in a project, but I can't take input really

dominicm 2016-02-23T19:08:02.000021Z

So I'm limited to vars and finding .nrepl-port

juhoteperi 2016-02-23T19:08:49.000022Z

Will be interesting to see this

dominicm 2016-02-23T19:09:46.000023Z

I can't use fireplace, as vimscript can't be asyncd yet (else the omni function would work)

juhoteperi 2016-02-23T19:09:54.000024Z

I'm hoping we could eventually integrate async stuff into fireplace or provide complete replacement

dominicm 2016-02-23T19:11:14.000025Z

That would be dreamy. Perhaps an excellent long term goal.

juhoteperi 2016-02-23T19:13:39.000026Z

Yeah won't be easy but hopefully once there is a working implementation it will be easier to see how it could be integrated

dominicm 2016-02-23T19:16:34.000028Z

On the train I managed to get core in completion. That was pretty cool. But debugging is being difficult. I can't print data out. I've also got lots to do if i want this to work properly, e.g. Finding the namespace for the file, finding the connection,

juhoteperi 2016-02-23T19:20:31.000029Z

I think that functionality should be quite easy to copy from fireplace

dominicm 2016-02-23T19:23:57.000030Z

Yeah, true. I need to figure out prompting for a connection... If you're not in a project

dominicm 2016-02-23T19:26:46.000031Z

Maybe I can make a command somehow... I dunno