diff --git a/hermes.c b/hermes.c index 19ff8e1..d2ba42f 100644 --- a/hermes.c +++ b/hermes.c @@ -1433,14 +1433,6 @@ void editorCommandKp(int c) { E.mode = VisualMode; } break; - case 'V': - if (E.mode == CommandMode) { - E.vx = E.row[E.cy].size - 1; - E.vy = E.cy; - E.cx = 0; - E.mode = VisualMode; - } - break; case 'y': if (E.mode == VisualMode) { editorCopyRange(E.cx, E.cy, E.vx, E.vy);