This commit is contained in:
Ihor Antonov
2019-07-15 21:34:15 -04:00
parent 31d256892e
commit 9a5183f22d

View File

@@ -8453,24 +8453,24 @@ static void ex_tag_cmd(exarg_T *eap, char_u *name)
int cmd;
switch (name[1]) {
case 'j': cmd = DT_JUMP; /* ":tjump" */
case 'j': cmd = DT_JUMP; // ":tjump"
break;
case 's': cmd = DT_SELECT; /* ":tselect" */
case 's': cmd = DT_SELECT; // ":tselect"
break;
case 'p': /* ":tprevious" */
case 'N': /* ":tNext" */
case 'p': // ":tprevious"
case 'N': // ":tNext"
cmd = DT_PREV;
break;
case 'n': cmd = DT_NEXT; /* ":tnext" */
case 'n': cmd = DT_NEXT; // ":tnext"
break;
case 'o': cmd = DT_POP; /* ":pop" */
case 'o': cmd = DT_POP; // ":pop"
break;
case 'f': /* ":tfirst" */
case 'r': cmd = DT_FIRST; /* ":trewind" */
case 'f': // ":tfirst"
case 'r': cmd = DT_FIRST; // ":trewind"
break;
case 'l': cmd = DT_LAST; /* ":tlast" */
case 'l': cmd = DT_LAST; // ":tlast"
break;
default: /* ":tag" */
default: // ":tag"
if (p_cst && *eap->arg != NUL) {
ex_cstag(eap);
return;