Skip to content

Commit 604aa5e

Browse files
authored
Merge pull request #29 from clojure-vim/fix/missing-url
Add missing URL parameter to commands
2 parents ca042c1 + 9387662 commit 604aa5e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rplugin/python3/acid/commands/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,6 @@ def call(cls, acid, context, *args):
139139
for h, *args in items(custom)
140140
)
141141

142-
acid.command(payload, handlers)
142+
url = formatted_localhost_address(self.nvim)
143+
144+
acid.command(payload, handlers, url)

0 commit comments

Comments
 (0)