Open Konfekt opened 3 hours ago
The following idiom in a compiler/*.vim file
compiler/*.vim
let &l:makeprg = 'm' exe 'CompilerSet makeprg='..escape(&l:makeprg, ' "')
should work fine (maybe requiring further escapes!?), but is not accounted for by :Dispatch. I suspect a regex searches for makeprg=\w+ ?
:Dispatch
makeprg=\w+
One can work around by " CompilerSet makeprg=m comments, but that seems rather something to be fixed on Dispatch's side
" CompilerSet makeprg=m
The following idiom in a
compiler/*.vim
fileshould work fine (maybe requiring further escapes!?), but is not accounted for by
:Dispatch
. I suspect a regex searches formakeprg=\w+
?