We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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+
The text was updated successfully, but these errors were encountered:
One can work around by " CompilerSet makeprg=m comments, but that seems rather something to be fixed on Dispatch's side
" CompilerSet makeprg=m
Sorry, something went wrong.
Can you show me some real world examples?
Fixed how? Seems well beyond the limits of what can be accomplished with regex.
https://github.com/vim/vim/pull/15804/files , https://github.com/vim/vim/pull/16007/files and https://github.com/vim/vim/pull/16001/files
I sneaked in besaid comment just in case
Maybe something like \v<makeprg>\W+=\W+<m> if not too slow?
\v<makeprg>\W+=\W+<m>
No branches or pull requests
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 for
makeprg=\w+
?The text was updated successfully, but these errors were encountered: