-
Hi! I can connect to my remote nrepl with but I can't find any formula for this that works in
Is there a way to tell Conjure about this remote nrepl without needing to explicitly call |
Beta Was this translation helpful? Give feedback.
Answered by
agriffis
Aug 14, 2024
Replies: 1 comment 2 replies
-
Conjure only supports a port in the port file, not a full address. I was
under the impression this is how CIDER works in emacs too, if not then I
can probably add support for it.
I don't THINK the port file is supposed to contain anything other than a
port, happy to be proved wrong. Until then maybe a custom Neovim command
local to the repo would work well. I'm fairly sure Conjure supports
overriding the default host too? Could be imagining that but if so, setting
that would allow the port file to take you to the remote host on startup.
…On Wed, 14 Aug 2024, 13:59 Aron Griffis, ***@***.***> wrote:
Hi! I can connect to my remote nrepl with :ConjureConnect nrepl://
192.168.9.9:7888
but I can't find any formula for this that works in .nrepl-port. All of
the following fail:
- 192.168.9.9:7888
- nrepl:192.168.9.9:7888
- nrepl://192.168.9.9:7888
Is there a way to tell Conjure about this remote nrepl without needing to
explicitly call :ConjureConnect every time I start neovim?
—
Reply to this email directly, view it on GitHub
<#594>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACM6XLHT27ZMSEECFEUKX3ZRNIDHAVCNFSM6AAAAABMQJQWAWVHI2DSMVQWIX3LMV43ERDJONRXK43TNFXW4OZXGA2TENJXHA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Okay, thanks. I created a second file
.nrepl-host
and the following configuration in lazyvimI'm also using https://github.com/airblade/vim-rooter so my CWD is always the root of the project, so I don't have to do anything special to find
.nrepl-host
This will work fine.