[BACK]Return to input.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/input.c between version 1.146 and 1.147

version 1.146, 2019/03/12 20:02:47 version 1.147, 2019/03/13 07:34:36
Line 1471 
Line 1471 
         case INPUT_CSI_HPA:          case INPUT_CSI_HPA:
                 n = input_get(ictx, 0, 1, 1);                  n = input_get(ictx, 0, 1, 1);
                 if (n != -1)                  if (n != -1)
                         screen_write_cursormove(sctx, n - 1, -1, 1);                          screen_write_cursormove(sctx, n - 1, -1, 0);
                 break;                  break;
         case INPUT_CSI_ICH:          case INPUT_CSI_ICH:
                 n = input_get(ictx, 0, 1, 1);                  n = input_get(ictx, 0, 1, 1);
Line 1540 
Line 1540 
         case INPUT_CSI_VPA:          case INPUT_CSI_VPA:
                 n = input_get(ictx, 0, 1, 1);                  n = input_get(ictx, 0, 1, 1);
                 if (n != -1)                  if (n != -1)
                         screen_write_cursormove(sctx, -1, n - 1, 1);                          screen_write_cursormove(sctx, -1, n - 1, 0);
                 break;                  break;
         case INPUT_CSI_DECSCUSR:          case INPUT_CSI_DECSCUSR:
                 n = input_get(ictx, 0, 0, 0);                  n = input_get(ictx, 0, 0, 0);

Legend:
Removed from v.1.146  
changed lines
  Added in v.1.147