Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 22, 2009, 11:32:30 PM (15 years ago)
Author:
scheusso
Message:

added a new feature to the IOConsole: you can now search the history (like in bash shells) with PgUP
just enter a few signs/characters of a command you once typed in and press PgUP to complete the command
if the found command is not the one you were looking for just press PgUP again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/libraries/core/input/InputPrereqs.h

    r5781 r5986  
    179179            Up            = OIS::KC_UP,              // UpArrow on arrow keypad
    180180            PageUp        = OIS::KC_PGUP,            // PgUp on arrow keypad
     181            AltPageUp     = OIS::KC_PGUP+1,          // Alternative PgUp for the IOConsole
    181182            Left          = OIS::KC_LEFT,            // LeftArrow on arrow keypad
    182183            Right         = OIS::KC_RIGHT,           // RightArrow on arrow keypad
     
    184185            Down          = OIS::KC_DOWN,            // DownArrow on arrow keypad
    185186            PageDown      = OIS::KC_PGDOWN,          // PgDn on arrow keypad
     187            AltPageDown   = OIS::KC_END-1,           // Alternative PgUp for IOConsole
    186188            Insert        = OIS::KC_INSERT,          // Insert on arrow keypad
    187189            Delete        = OIS::KC_DELETE,          // Delete on arrow keypad
     
    286288            "UP",
    287289            "PageUp",
    288             "",
     290            "", // used for AltPageUp
    289291            "Left",
    290292            "",
    291293            "Right",
    292             "",
     294            "", // used for AltPageDown
    293295            "End", "Down", "PageDown", "Insert", "Delete",
    294296            "","","","","","","",
Note: See TracChangeset for help on using the changeset viewer.