From c62deba907a06cd4d2d7cdca63198fbaab43e25e Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Thu, 18 Feb 2021 08:45:37 +0300 Subject: [PATCH 1/2] Replace deprecated pseudo-private API usage The pseudo-private _VimuxOption function has been deprecated and an official public VimuxOption method is available. However the way defaults are handled is also changed. If you don't want to use the default value, just don't. Hard coding the prompt here seems to make more sense that even bothering to ask what the option value is. --- plugin/vimix.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/vimix.vim b/plugin/vimix.vim index b0accd8..32c3550 100644 --- a/plugin/vimix.vim +++ b/plugin/vimix.vim @@ -92,7 +92,7 @@ function VimixLocal() endfunction function VimixPromptCommand() - let l:command = input(_VimuxOption("g:VimixPromptString", "Mix Command? ")) + let l:command = input('Mix Command? ') call s:VimixRunCommand(l:command) endfunction From 0f05d99f59aa304d26e7849fea539e1a7991cd47 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Thu, 18 Feb 2021 08:51:08 +0300 Subject: [PATCH 2/2] Update URL to upstream Vimux project --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f536132..df668a7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Vimix -[vimux](https://github.com/benmills/vimux) with [Elixir mix](https://github.com/elixir-lang/elixir) integration +[vimux](https://github.com/preservim/vimux) with [Elixir mix](https://github.com/elixir-lang/elixir) integration ## Installation @@ -50,7 +50,7 @@ Here are the key mappings for your reference: ## Requirements -* [vimux](https://github.com/benmills/vimux) +* [vimux](https://github.com/preservim/vimux) * [Elixir Language](https://github.com/elixir-lang/elixir) ## Contributing