Skip to content

Commit

Permalink
Disabled CTRL-X to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
proh14 committed Dec 11, 2024
1 parent fab1928 commit 5cd4019
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/input.c
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,10 @@ void procKey(void) {
case CTRL_KEY('r'):
replace();
break;
case CTRL_KEY('x'):
delRow(curbuf.cy);
break;
// TODO(Hoorad): Fix CTRL_X
// case CTRL_KEY('x'):
// delRow(curbuf.cy);
// break;
case CTRL_KEY('n'):
execCommand();
break;
Expand Down

0 comments on commit 5cd4019

Please sign in to comment.