We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5e0fbc commit ba6ad17Copy full SHA for ba6ad17
2 files changed
src/tag.c
@@ -3203,8 +3203,12 @@ jumpto_tag(
3203
* open a new tab page. */
3204
if (postponed_split || cmdmod.tab != 0)
3205
{
3206
- win_split(postponed_split > 0 ? postponed_split : 0,
3207
- postponed_split_flags);
+ if (win_split(postponed_split > 0 ? postponed_split : 0,
+ postponed_split_flags) == FAIL)
3208
+ {
3209
+ --RedrawingDisabled;
3210
+ goto erret;
3211
+ }
3212
RESET_BINDING(curwin);
3213
}
3214
#endif
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 505,
769
/**/
770
504,
771
0 commit comments