https://github.com/vim/vim/pull/5417
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.![]()
Merging #5417 into master will increase coverage by
<.01%.
The diff coverage is100%.
@@ Coverage Diff @@ ## master #5417 +/- ## ========================================== + Coverage 82.69% 82.69% +<.01% ========================================== Files 134 134 Lines 147652 147661 +9 ========================================== + Hits 122099 122111 +12 + Misses 25553 25550 -3
| Impacted Files | Coverage Δ | |
|---|---|---|
| src/evalfunc.c | 91.87% <100%> (ø) |
⬆️ |
| src/tag.c | 79.38% <100%> (+0.09%) |
⬆️ |
| src/channel.c | 84.22% <0%> (-0.08%) |
⬇️ |
| src/message.c | 86.38% <0%> (-0.05%) |
⬇️ |
| src/window.c | 88.3% <0%> (-0.04%) |
⬇️ |
| src/gui.c | 63.63% <0%> (+0.05%) |
⬆️ |
| src/gui_gtk_x11.c | 58.06% <0%> (+0.09%) |
⬆️ |
| src/if_xcmdsrv.c | 86.35% <0%> (+0.71%) |
⬆️ |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact),ø = not affected,? = missing data
Powered by Codecov. Last update eb698d0...8b7c2d6. Read the comment docs.
Yegappan wrote:
> * Add support for truncating the tagstack
It looks like the "curidx" is set after truncating the stack. I would
find it more logical to first set the current index and then truncate
and append the new items. The test actually uses two calls to
settagstack(), I would think that's an indication that this is the
desired behavior.
—
You are receiving this because you commented.