-
-
Couldn't load subscription status.
- Fork 5.9k
Fix Test_popup_and_window_resize #2186
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2186 +/- ##
==========================================
- Coverage 74.21% 74.2% -0.01%
==========================================
Files 90 90
Lines 131978 131977 -1
Branches 30862 28984 -1878
==========================================
- Hits 97942 97933 -9
- Misses 34011 34015 +4
- Partials 25 29 +4
Continue to review full report at Codecov.
|
Sorry, I had misunderstood. When execute vim with absolute/relative path, |
Problem: Test_popup_and_window_resize() does not always pass.
Solution: Do not use $VIMPROG, pass the Vim executable in the vimcmd file.
(Ozaki Kiichi, closes vim#2186)
Problem: Test_popup_and_window_resize() does not always pass.
Solution: Do not use $VIMPROG, pass the Vim executable in the vimcmd file.
(Ozaki Kiichi, closes vim/vim#2186)
vim/vim@6318205
NOTE: Does not add `GetVimProg()`, but keeps/syncs existing usages of it
in tests (which obviously are all skipped, mostly because of
`!has('terminal')`). Likely to be replaced with `v:progpath` in Vim [1], or
at least that would/should be used with Neovim then probably.
1: vim/vim#4806
This should have been fixed in vim#2186 (v8.0.1179).
Problem: Test_popup_and_window_resize() does not always pass.
Solution: Do not use $VIMPROG, pass the Vim executable in the vimcmd file.
(Ozaki Kiichi, closes vim/vim#2186)
vim/vim@6318205
vim-patch:8.0.1526: no test using a screen dump yet
Problem: No test using a screen dump yet.
Solution: Add a test for C syntax highlighting. Add helper functions.
vim/vim@da65058
NOTE: uses modified `GetVimProg()` (which is used with skipped tests only
(mostly because of `!has('terminal')`)).
Vim uses a 'vimcmd' file, while Nvim uses `$NVIM_TEST_ARGX` environment
variables.
Ref: vim/vim#4806
Problem: Test_popup_and_window_resize() does not always pass.
Solution: Do not use $VIMPROG, pass the Vim executable in the vimcmd file.
(Ozaki Kiichi, closes vim/vim#2186)
vim/vim@6318205
vim-patch:8.0.1526: no test using a screen dump yet
Problem: No test using a screen dump yet.
Solution: Add a test for C syntax highlighting. Add helper functions.
vim/vim@da65058
NOTE: uses modified `GetVimProg()` (which is used with skipped tests only
(mostly because of `!has('terminal')`)).
Vim uses a 'vimcmd' file, while Nvim uses `$NVIM_TEST_ARGX` environment
variables.
Ref: vim/vim#4806
Fix for https://groups.google.com/forum/#!topic/vim_dev/RskqZ2J-040
vimcmd; set first line to$VIMPROGGetVimProg()to get first line ofvimcmdi.e.$VIMPROGFor example, on Macv:progpathis justvim, so is useless to get vim path.Fix for https://ci.appveyor.com/project/chrisbra/vim-win32-installer/build/503
As for as I investigated, on Windows it needs a wait after sending
<esc>, otherwise vim cannot enter normal mode and receives charactersGi(following<esc>) on insert mode.