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 Jun 21, 2024
1 parent 65185b8 commit cbc4ce6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugin/vim-bob.vim
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,10 @@ function! s:ParseProjectArgs(args)
if empty(l:match)
throw 'internal error: expected entry `configuration` at line ' . (l:line_nr + 2)
endif
let l:args.config = l:match[1]
let l:config = l:match[1]
if !empty(l:config)
let l:args.config = l:config
endif
" parse arguments
let l:line = getline(l:line_nr + 3)
let l:match = matchlist(l:line, ' arguments: \(.*\)')
Expand Down

0 comments on commit cbc4ce6

Please sign in to comment.