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

Diff for /src/usr.bin/tmux/key-string.c between version 1.42 and 1.43

version 1.42, 2017/01/05 09:07:16 version 1.43, 2017/01/11 22:36:07
Line 247 
Line 247 
         /* Handle special keys. */          /* Handle special keys. */
         if (key == KEYC_UNKNOWN)          if (key == KEYC_UNKNOWN)
                 return ("Unknown");                  return ("Unknown");
           if (key == KEYC_FOCUS_IN)
                   return ("FocusIn");
           if (key == KEYC_FOCUS_OUT)
                   return ("FocusOut");
         if (key == KEYC_MOUSE)          if (key == KEYC_MOUSE)
                 return ("Mouse");                  return ("Mouse");
           if (key == KEYC_DRAGGING)
                   return ("Dragging");
   
         /*          /*
          * Special case: display C-@ as C-Space. Could do this below in           * Special case: display C-@ as C-Space. Could do this below in

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.43