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

Diff for /src/usr.bin/tmux/Attic/mode-key.c between version 1.5 and 1.6

version 1.5, 2009/07/26 21:42:08 version 1.6, 2009/07/27 12:11:11
Line 110 
Line 110 
                 return (MODEKEYCMD_BACKTOINDENTATION);                  return (MODEKEYCMD_BACKTOINDENTATION);
         case '\033':          case '\033':
                 return (MODEKEYCMD_CLEARSELECTION);                  return (MODEKEYCMD_CLEARSELECTION);
           case 'C':
                   if (mdata->flags & MODEKEY_CANEDIT)
                           mdata->flags |= MODEKEY_EDITMODE;
                   return (MODEKEYCMD_DELETETOENDOFLINE);
           case 'D':
                   return (MODEKEYCMD_DELETETOENDOFLINE);
         case 'j':          case 'j':
         case KEYC_DOWN:          case KEYC_DOWN:
                 return (MODEKEYCMD_DOWN);                  return (MODEKEYCMD_DOWN);
Line 169 
Line 175 
         case '\027':          case '\027':
         case 'w' | KEYC_ESCAPE:          case 'w' | KEYC_ESCAPE:
                 return (MODEKEYCMD_COPYSELECTION);                  return (MODEKEYCMD_COPYSELECTION);
           case '\013':
                   return (MODEKEYCMD_DELETETOENDOFLINE);
         case '\016':          case '\016':
         case KEYC_DOWN:          case KEYC_DOWN:
                 return (MODEKEYCMD_DOWN);                  return (MODEKEYCMD_DOWN);

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6