Removes V command until I can get it to not segfault or behave weirdly

This commit is contained in:
sloum 2020-02-06 20:33:47 -08:00
parent b05044b215
commit 324bf5153c
1 changed files with 0 additions and 8 deletions

View File

@ -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);