Skip to content

Commit

Permalink
fixup! WIP: feat: BobProject from log entry
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasFeher committed May 21, 2024
1 parent b23fc69 commit 0d6336f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugin/vim-bob.vim
Original file line number Diff line number Diff line change
Expand Up @@ -254,15 +254,15 @@ function! s:Project(bang, ...)
endif
" build the project
try
let l:project_command = s:DevImpl(a:bang, a:package, extend({'use_prefix': 1}, l:args))
let l:project_command = s:DevImpl(a:bang, l:package, extend({'use_prefix': 1}, l:args))
catch
echohl WarningMsg
echom 'Running Bob failed. Not all features of vim-bob''s project mode might be available. Re-run :BobProject as soon as these errors are fixed'
echohl None
return
endtry

call s:ProjectImpl(a:package, l:args)
call s:ProjectImpl(l:package, l:args)

let l:args_args = ""
if has_key(l:args, "args")
Expand All @@ -272,7 +272,7 @@ function! s:Project(bang, ...)
if has_key(l:args, "config")
let l:args_config = l:args.config
endif
let l:log_string = ["- " . a:package . ":",
let l:log_string = ["- " . l:package . ":",
\" prefix: " . g:bob_prefix,
\" configuration: " . l:args_config,
\" directory: " . s:bob_base_path,
Expand Down

0 comments on commit 0d6336f

Please sign in to comment.