Milad

Results 78 comments of Milad

if you are stuck in this step for now, you can clone code and run `sbt publish-local ` and use `addSbtPlugin("org.scala-tools.sbt" % "sbt-android-plugin" % "0.6.1-SNAPSHOT") ` in your build.sbt

I've implemented one in this gist: https://gist.github.com/slashmili/67db483616ad93be3033f95ce7babe92 However I don't think that it should part of `Fluxter` library. It's so small that I don't think it deserves to be a...

Hey @zlfera, May I know if you have compiled the project? https://github.com/slashmili/alchemist.vim/wiki#important-notes If you still have problem please flow the [Debugging](https://github.com/slashmili/alchemist.vim/blob/master/.github/ISSUE_TEMPLATE#L25) steps and send me the outputs

@destne thanks for reporting it. I can't say anything until you provide the [Debugging](https://github.com/slashmili/alchemist.vim/blob/master/.github/ISSUE_TEMPLATE#L25) output.

@kenny-evitt so the way that this plugin works, first attempt to use the current socket, if it's not available, it spawn it again. that's why the next action works. We...

1. One approach is to retry the given command if `system` function returns non-zero https://github.com/slashmili/alchemist.vim/blob/5575fc8e18695b050b1c4d51623ae37f12ff7648/after/plugin/alchemist.vim#L11-L27 2. The other approach is to improve the [python client](https://github.com/slashmili/alchemist.vim/blob/5575fc8e18695b050b1c4d51623ae37f12ff7648/elixir_sense_client) to try to spawn the...

Yes, the log file is in `/tmp/log.log` though! make sure to change it somewhere more permanent and appropriate

@kenny-evitt one possible solution is ```diff diff --git a/elixir_sense_client b/elixir_sense_client index 3a9d62c..370f58d 100755 --- a/elixir_sense_client +++ b/elixir_sense_client @@ -1,6 +1,6 @@ #!/usr/bin/env python from __future__ import print_function -import os, sys,...

When I integrated elixir_sense, it didn't have this functionality. However I just [checked elixir_sense](https://github.com/msaraiva/elixir_sense/blob/master/test/elixir_sense/references_test.exs) and it does have a way to find references in the code. How did vim-go show...

Thanks, I played around with `references` but was not able to use it effectively. I saw there is some updates in elixir_sense upstream, I'll try it out again.