Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • keys.c

    rdcd48ad r7869e48  
    1313    *km_ew_multi, *km_ew_onel, *km_viewwin;
    1414
    15  
     15
    1616  /****************************************************************/
    1717  /*************************** GLOBAL *****************************/
     
    1919
    2020  km_global = km = owl_keyhandler_create_and_add_keymap(kh, "global",
    21        "System-wide default key bindings", 
     21       "System-wide default key bindings",
    2222       owl_keys_default_invalid, NULL, NULL);
    2323  BIND_CMD("C-z",      "message Use :suspend to suspend.", "");
     
    2828
    2929  km_editwin = km = owl_keyhandler_create_and_add_keymap(kh, "edit",
    30        "Text editing and command window", 
     30       "Text editing and command window",
    3131       owl_keys_editwin_default, NULL, owl_keys_editwin_postalways);
    3232  owl_keymap_set_parent(km_editwin, km_global);
     
    9797
    9898  km_ew_multi = km = owl_keyhandler_create_and_add_keymap(kh, "editmulti",
    99        "Multi-line text editing", 
     99       "Multi-line text editing",
    100100       owl_keys_editwin_default, NULL, owl_keys_editwin_postalways);
    101101  owl_keymap_set_parent(km_ew_multi, km_editwin);
     
    117117  BIND_CMD("M-n",         "edit:history-next", "");
    118118
    119   /* note that changing "disable-ctrl-d" to "on" will change this to 
     119  /* note that changing "disable-ctrl-d" to "on" will change this to
    120120   * edit:delete-next-char */
    121121  BIND_CMD("C-d",     "edit:done-or-delete", "sends the zephyr if at the end of the message");
     
    127127
    128128  km_ew_onel = km = owl_keyhandler_create_and_add_keymap(kh, "editline",
    129        "Single-line text editing", 
     129       "Single-line text editing",
    130130       owl_keys_editwin_default, NULL, owl_keys_editwin_postalways);
    131131  owl_keymap_set_parent(km_ew_onel, km_editwin);
     
    146146  BIND_CMD("CR",          "editline:done", "executes the command");
    147147
    148  
     148
    149149  /****************************************************************/
    150150  /**************************** EDITRESPONSE **********************/
     
    152152
    153153  km_ew_onel = km = owl_keyhandler_create_and_add_keymap(kh, "editresponse",
    154        "Single-line response to question", 
     154       "Single-line response to question",
    155155       owl_keys_editwin_default, NULL, owl_keys_editwin_postalways);
    156156  owl_keymap_set_parent(km_ew_onel, km_editwin);
     
    167167
    168168  km_viewwin = km = owl_keyhandler_create_and_add_keymap(kh, "popless",
    169        "Pop-up window (eg, help)", 
     169       "Pop-up window (eg, help)",
    170170       owl_keys_default_invalid, NULL, owl_keys_popless_postalways);
    171171  owl_keymap_set_parent(km_viewwin, km_global);
     
    261261  BIND_CMD("M-M", "smartnarrow -ri",  "like M-N but with 'narrow-related' temporarily flipped.");
    262262  BIND_CMD("M-p", "view personal", "");
    263  
     263
    264264  BIND_CMD("/",   "start-command search ", "start a search command");
    265265  BIND_CMD("?",   "start-command search -r ", "start a reverse search command");
     
    273273  BIND_CMD("C-n",    "recv:next",      "");
    274274  BIND_CMD("M-[ B",  "recv:next",      "");
    275   BIND_CMD("M-C-n",  "recv:next --smart-filter", "move to next message matching the current one"); 
     275  BIND_CMD("M-C-n",  "recv:next --smart-filter", "move to next message matching the current one");
    276276  BIND_CMD("UP",     "recv:prev",      "");
    277277  BIND_CMD("M-[ A",  "recv:prev",      "");
Note: See TracChangeset for help on using the changeset viewer.