summaryrefslogtreecommitdiffstats
path: root/autoload/julia/doc.vim
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--autoload/julia/doc.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/autoload/julia/doc.vim b/autoload/julia/doc.vim
index 1dee5aed..7907c94a 100644
--- a/autoload/julia/doc.vim
+++ b/autoload/julia/doc.vim
@@ -1,4 +1,5 @@
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'julia') == -1
+
" path to the julia binary to communicate with
if has('win32') || has('win64')
if exists('g:julia#doc#juliapath')
@@ -241,4 +242,5 @@ function! s:likely(str) abort
let output = systemlist(cmd)
return split(matchstr(output[0], '\C^search: \zs.*'))
endfunction
+
endif