From e117ce5325495da3cda7a04252461688ebbaeb80 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Sat, 14 Dec 2019 23:25:46 +0900 Subject: Fix UNIX's path --- plugin/lsp_setup.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/lsp_setup.vim b/plugin/lsp_setup.vim index 0349741..ef84f0e 100644 --- a/plugin/lsp_setup.vim +++ b/plugin/lsp_setup.vim @@ -10,7 +10,7 @@ function! s:vimlsp_installer() if has('win32') let l:command = substitute(l:command, '/', '\', 'g') . '.cmd' else - let l:command = substitute(l:command, '/', '\', 'g') . '.sh' + let l:command = l:command . '.sh' endif if !executable(l:command) return '' -- cgit v1.2.3-54-g00ecf