We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cba3045 commit dffb252Copy full SHA for dffb252
2 files changed
src/ex_docmd.c
@@ -8568,11 +8568,13 @@ ex_operators(eap)
8568
break;
8569
8570
default: /* CMD_rshift or CMD_lshift */
8571
- if ((eap->cmdidx == CMD_rshift)
+ if (
8572
#ifdef FEAT_RIGHTLEFT
8573
- ^ curwin->w_p_rl
+ (eap->cmdidx == CMD_rshift) ^ curwin->w_p_rl
8574
+#else
8575
+ eap->cmdidx == CMD_rshift
8576
#endif
- )
8577
+ )
8578
oa.op_type = OP_RSHIFT;
8579
else
8580
oa.op_type = OP_LSHIFT;
src/version.c
@@ -728,6 +728,8 @@ static char *(features[]) =
728
729
static int included_patches[] =
730
{ /* Add new patch number below this line */
731
+/**/
732
+ 1190,
733
/**/
734
1189,
735
0 commit comments