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; int cmd;
switch (name[1]) { switch (name[1]) {
case 'j': cmd = DT_JUMP; /* ":tjump" */ case 'j': cmd = DT_JUMP; // ":tjump"
break; break;
case 's': cmd = DT_SELECT; /* ":tselect" */ case 's': cmd = DT_SELECT; // ":tselect"
break; break;
case 'p': /* ":tprevious" */ case 'p': // ":tprevious"
case 'N': /* ":tNext" */ case 'N': // ":tNext"
cmd = DT_PREV; cmd = DT_PREV;
break; break;
case 'n': cmd = DT_NEXT; /* ":tnext" */ case 'n': cmd = DT_NEXT; // ":tnext"
break; break;
case 'o': cmd = DT_POP; /* ":pop" */ case 'o': cmd = DT_POP; // ":pop"
break; break;
case 'f': /* ":tfirst" */ case 'f': // ":tfirst"
case 'r': cmd = DT_FIRST; /* ":trewind" */ case 'r': cmd = DT_FIRST; // ":trewind"
break; break;
case 'l': cmd = DT_LAST; /* ":tlast" */ case 'l': cmd = DT_LAST; // ":tlast"
break; break;
default: /* ":tag" */ default: // ":tag"
if (p_cst && *eap->arg != NUL) { if (p_cst && *eap->arg != NUL) {
ex_cstag(eap); ex_cstag(eap);
return; return;