Skip to content

Commit

Permalink
Correct "is compiled" check
Browse files Browse the repository at this point in the history
  • Loading branch information
Olical committed Sep 4, 2019
1 parent 22f7b0c commit b8f5f47
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions plugin/conjure.vim
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,7 @@ endfunction
" Initialise if not done already.
function! conjure#init()
if g:conjure_initialised == v:false
if s:dev ||
\(filereadable(s:cwd . "/classes/conjure/main$_main.class") &&
\ filereadable(s:cwd . "/target/mranderson/load-order.edn"))
if s:dev || filereadable(s:cwd . "/classes/conjure/main$_main.class")
let g:conjure_initialised = v:true
call conjure#start()
ConjureUp
Expand Down

0 comments on commit b8f5f47

Please sign in to comment.