-
Notifications
You must be signed in to change notification settings - Fork 391
New issue
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
Fix problems with success_cmd on windows nvim. #2088
Conversation
…ng does not (lervag#2085)" This reverts commit c9b3b50.
I think, just to be safe, I should check what happens if |
Yes, that seems like a good idea. One could also think about a parameter en/disabling this since it seems to be very fragile and not that important (though, personally I like it very much). |
Yeah, sadly, adding set shell=powershell
set shellcmdflag=-command to
But this ampersand is already part of the existing code, and wasn't introduced by this PR. So it's probably not our/your problem to fix. :-) |
And I just noticed |
Thanks for this, and for the discussion. As I'm not a Windows user, I really do depend on the contribution of others to help make VimTeX work well on Windows as well - it is much appreciated! |
Please note I also made a simple adjustment; see here: vimtex/autoload/vimtex/compiler/latexmk.vim Lines 628 to 638 in c1e0246
I believe this should still work and I think it is slightly more readable. I also believe the comment makes more sense now. Can you confirm? |
1 similar comment
Please note I also made a simple adjustment; see here: vimtex/autoload/vimtex/compiler/latexmk.vim Lines 628 to 638 in c1e0246
I believe this should still work and I think it is slightly more readable. I also believe the comment makes more sense now. Can you confirm? |
Applied changes as suggested by @yongrenjie in #2084