diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-14 23:25:46 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-14 23:25:46 +0900 |
commit | e117ce5325495da3cda7a04252461688ebbaeb80 (patch) | |
tree | f1372b06fa4d6848977213732e701b4777fae01e /plugin | |
parent | 3886b2a266e0cf4c582c1ec5db2ce0f74dd2bf8f (diff) | |
download | vim-lsp-settings-e117ce5325495da3cda7a04252461688ebbaeb80.tar.gz vim-lsp-settings-e117ce5325495da3cda7a04252461688ebbaeb80.tar.bz2 vim-lsp-settings-e117ce5325495da3cda7a04252461688ebbaeb80.zip |
Fix UNIX's path
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/lsp_setup.vim | 2 |
1 files changed, 1 insertions, 1 deletions
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 '' |