toto.txt 228 B

123456789101112
  1. void editorMoveCursor(int key) {
  2. switch (key) {
  3. case ARROW_LEFT:
  4. if (E.cx != 0) {
  5. E.cx--;
  6. }
  7. break;
  8. case ARROW_RIGHT:
  9. if (E.cx != E.screencols - 1) {
  10. E.cx++;
  11. }
  12. break;