[7d4fbcd] | 1 | #include "owl.h" |
---|
| 2 | |
---|
[1aee7d9] | 3 | static const char fileIdent[] = "$Id$"; |
---|
[7d4fbcd] | 4 | |
---|
| 5 | #define BIND_CMD(kpress, command, desc) \ |
---|
| 6 | owl_keymap_create_binding(km, kpress, command, NULL, desc); |
---|
| 7 | |
---|
| 8 | #define BIND_FNV(kpress, fn, desc) \ |
---|
| 9 | owl_keymap_create_binding(km, kpress, NULL, fn, desc); |
---|
| 10 | |
---|
| 11 | |
---|
| 12 | /* sets up the default keymaps */ |
---|
| 13 | void owl_keys_setup_keymaps(owl_keyhandler *kh) { |
---|
| 14 | owl_keymap *km, *km_global, *km_editwin, *km_mainwin, |
---|
| 15 | *km_ew_multi, *km_ew_onel, *km_viewwin; |
---|
| 16 | |
---|
| 17 | |
---|
| 18 | /****************************************************************/ |
---|
| 19 | /*************************** GLOBAL *****************************/ |
---|
| 20 | /****************************************************************/ |
---|
| 21 | |
---|
| 22 | km_global = km = owl_keyhandler_create_and_add_keymap(kh, "global", |
---|
| 23 | "System-wide default key bindings", |
---|
| 24 | owl_keys_default_invalid, NULL, NULL); |
---|
| 25 | BIND_CMD("C-z", "suspend", "Suspend owl"); |
---|
| 26 | |
---|
| 27 | /****************************************************************/ |
---|
| 28 | /***************************** EDIT *****************************/ |
---|
| 29 | /****************************************************************/ |
---|
| 30 | |
---|
| 31 | km_editwin = km = owl_keyhandler_create_and_add_keymap(kh, "edit", |
---|
| 32 | "Text editing and command window", |
---|
| 33 | owl_keys_editwin_default, NULL, owl_keys_editwin_postalways); |
---|
| 34 | owl_keymap_set_submap(km_editwin, km_global); |
---|
| 35 | BIND_CMD("F1", "help", ""); |
---|
| 36 | BIND_CMD("HELP", "help", ""); |
---|
| 37 | BIND_CMD("M-[ 2 8 ~", "help", ""); |
---|
| 38 | |
---|
| 39 | BIND_CMD("C-c", "edit:cancel", ""); |
---|
| 40 | BIND_CMD("C-g", "edit:cancel", ""); |
---|
| 41 | |
---|
| 42 | BIND_CMD("M-f", "edit:move-next-word", ""); |
---|
| 43 | BIND_CMD("M-O 3 C", "edit:move-next-word", ""); |
---|
| 44 | BIND_CMD("M-b", "edit:move-prev-word", ""); |
---|
| 45 | BIND_CMD("M-O 3 D", "edit:move-prev-word", ""); |
---|
| 46 | |
---|
| 47 | BIND_CMD("LEFT", "edit:move-left", ""); |
---|
| 48 | BIND_CMD("C-b", "edit:move-left", ""); |
---|
| 49 | BIND_CMD("RIGHT", "edit:move-right", ""); |
---|
| 50 | BIND_CMD("C-f", "edit:move-right", ""); |
---|
| 51 | |
---|
| 52 | BIND_CMD("M-<", "edit:move-to-buffer-start", ""); |
---|
| 53 | BIND_CMD("HOME", "edit:move-to-buffer-start", ""); |
---|
| 54 | BIND_CMD("M->", "edit:move-to-buffer-end", ""); |
---|
| 55 | BIND_CMD("END", "edit:move-to-buffer-end", ""); |
---|
| 56 | |
---|
| 57 | BIND_CMD("C-a", "edit:move-to-line-start", ""); |
---|
| 58 | BIND_CMD("C-e", "edit:move-to-line-end", ""); |
---|
| 59 | |
---|
[262422c] | 60 | BIND_CMD("M-BACKSPACE", "edit:delete-prev-word", ""); |
---|
[b68f9cd] | 61 | BIND_CMD("M-DELETE", "edit:delete-prev-word", ""); |
---|
[7d4fbcd] | 62 | BIND_CMD("M-d", "edit:delete-next-word", ""); |
---|
| 63 | BIND_CMD("M-[ 3 ; 3 ~", "edit:delete-next-word", ""); |
---|
| 64 | |
---|
| 65 | BIND_CMD("C-h", "edit:delete-prev-char", ""); |
---|
| 66 | BIND_CMD("BACKSPACE", "edit:delete-prev-char", ""); |
---|
| 67 | BIND_CMD("DC", "edit:delete-prev-char", ""); |
---|
| 68 | BIND_CMD("DELETE", "edit:delete-prev-char", ""); |
---|
| 69 | |
---|
| 70 | BIND_CMD("C-k", "edit:delete-to-line-end", ""); |
---|
| 71 | |
---|
[f2e36b5] | 72 | BIND_CMD("C-t", "edit:transpose-chars", ""); |
---|
| 73 | |
---|
[7d4fbcd] | 74 | BIND_CMD("M-q", "edit:fill-paragraph", ""); |
---|
| 75 | |
---|
| 76 | BIND_CMD("C-l", "( edit:recenter ; redisplay )", ""); |
---|
| 77 | |
---|
| 78 | BIND_CMD("C-d", "edit:delete-next-char", ""); |
---|
| 79 | |
---|
| 80 | |
---|
| 81 | /****************************************************************/ |
---|
| 82 | /**************************** EDITMULTI *************************/ |
---|
| 83 | /****************************************************************/ |
---|
| 84 | |
---|
| 85 | km_ew_multi = km = owl_keyhandler_create_and_add_keymap(kh, "editmulti", |
---|
| 86 | "Multi-line text editing", |
---|
| 87 | owl_keys_editwin_default, NULL, owl_keys_editwin_postalways); |
---|
| 88 | owl_keymap_set_submap(km_ew_multi, km_editwin); |
---|
| 89 | |
---|
| 90 | BIND_CMD("UP", "editmulti:move-up-line", ""); |
---|
| 91 | BIND_CMD("C-p", "editmulti:move-up-line", ""); |
---|
| 92 | BIND_CMD("DOWN", "editmulti:move-down-line", ""); |
---|
| 93 | BIND_CMD("C-n", "editmulti:move-down-line", ""); |
---|
| 94 | |
---|
| 95 | /* This would be nice, but interferes with C-c to cancel */ |
---|
| 96 | /*BIND_CMD("C-c C-c", "editmulti:done", "sends the zephyr");*/ |
---|
| 97 | |
---|
[10b866d] | 98 | BIND_CMD("M-p", "edit:history-prev", ""); |
---|
| 99 | BIND_CMD("M-n", "edit:history-next", ""); |
---|
| 100 | |
---|
[217a43e] | 101 | /* note that changing "disable-ctrl-d" to "on" will change this to |
---|
[7d4fbcd] | 102 | * edit:delete-next-char */ |
---|
[217a43e] | 103 | BIND_CMD("C-d", "editmulti:done-or-delete", "sends the zephyr if at the end of the message"); |
---|
[7d4fbcd] | 104 | |
---|
| 105 | |
---|
| 106 | /****************************************************************/ |
---|
| 107 | /**************************** EDITLINE **************************/ |
---|
| 108 | /****************************************************************/ |
---|
| 109 | |
---|
| 110 | km_ew_onel = km = owl_keyhandler_create_and_add_keymap(kh, "editline", |
---|
| 111 | "Single-line text editing", |
---|
| 112 | owl_keys_editwin_default, NULL, owl_keys_editwin_postalways); |
---|
| 113 | owl_keymap_set_submap(km_ew_onel, km_editwin); |
---|
| 114 | |
---|
| 115 | BIND_CMD("C-u", "edit:delete-all", "Clears the entire line"); |
---|
| 116 | |
---|
| 117 | BIND_CMD("UP", "edit:history-prev", ""); |
---|
| 118 | BIND_CMD("C-p", "edit:history-prev", ""); |
---|
| 119 | BIND_CMD("M-p", "edit:history-prev", ""); |
---|
| 120 | |
---|
| 121 | BIND_CMD("DOWN", "edit:history-next", ""); |
---|
| 122 | BIND_CMD("C-n", "edit:history-next", ""); |
---|
| 123 | BIND_CMD("M-n", "edit:history-next", ""); |
---|
| 124 | |
---|
| 125 | BIND_CMD("LF", "editline:done", "executes the command"); |
---|
| 126 | BIND_CMD("CR", "editline:done", "executes the command"); |
---|
| 127 | |
---|
[cf83b7a] | 128 | |
---|
| 129 | /****************************************************************/ |
---|
| 130 | /**************************** EDITRESPONSE **********************/ |
---|
| 131 | /****************************************************************/ |
---|
| 132 | |
---|
| 133 | km_ew_onel = km = owl_keyhandler_create_and_add_keymap(kh, "editresponse", |
---|
| 134 | "Single-line response to question", |
---|
| 135 | owl_keys_editwin_default, NULL, owl_keys_editwin_postalways); |
---|
| 136 | owl_keymap_set_submap(km_ew_onel, km_editwin); |
---|
| 137 | |
---|
| 138 | BIND_CMD("C-u", "edit:delete-all", "Clears the entire line"); |
---|
| 139 | |
---|
| 140 | BIND_CMD("LF", "editresponse:done", "executes the command"); |
---|
| 141 | BIND_CMD("CR", "editresponse:done", "executes the command"); |
---|
| 142 | |
---|
[7d4fbcd] | 143 | |
---|
| 144 | /****************************************************************/ |
---|
| 145 | /**************************** POPLESS ***************************/ |
---|
| 146 | /****************************************************************/ |
---|
| 147 | |
---|
| 148 | km_viewwin = km = owl_keyhandler_create_and_add_keymap(kh, "popless", |
---|
| 149 | "Pop-up window (eg, help)", |
---|
| 150 | owl_keys_default_invalid, NULL, owl_keys_popless_postalways); |
---|
| 151 | owl_keymap_set_submap(km_viewwin, km_global); |
---|
| 152 | |
---|
| 153 | BIND_CMD("SPACE", "popless:scroll-down-page", ""); |
---|
| 154 | BIND_CMD("NPAGE", "popless:scroll-down-page", ""); |
---|
| 155 | BIND_CMD("M-n", "popless:scroll-down-page", ""); |
---|
| 156 | |
---|
| 157 | BIND_CMD("b", "popless:scroll-up-page", ""); |
---|
| 158 | BIND_CMD("PPAGE", "popless:scroll-up-page", "") |
---|
| 159 | BIND_CMD("M-p", "popless:scroll-up-page", ""); |
---|
| 160 | |
---|
| 161 | BIND_CMD("CR", "popless:scroll-down-line", ""); |
---|
| 162 | BIND_CMD("LF", "popless:scroll-down-line", ""); |
---|
| 163 | BIND_CMD("DOWN", "popless:scroll-down-line", ""); |
---|
| 164 | BIND_CMD("C-n", "popless:scroll-down-page", ""); |
---|
| 165 | |
---|
| 166 | BIND_CMD("UP", "popless:scroll-up-line", ""); |
---|
| 167 | BIND_CMD("C-h", "popless:scroll-up-line", ""); |
---|
| 168 | BIND_CMD("C-p", "popless:scroll-up-line", ""); |
---|
| 169 | BIND_CMD("DELETE", "popless:scroll-up-line", ""); |
---|
| 170 | BIND_CMD("BACKSPACE", "popless:scroll-up-line", ""); |
---|
| 171 | BIND_CMD("DC", "popless:scroll-up-line", ""); |
---|
| 172 | |
---|
| 173 | BIND_CMD("RIGHT", "popless:scroll-right 10", "scrolls right"); |
---|
| 174 | BIND_CMD("LEFT", "popless:scroll-left 10", "scrolls left"); |
---|
| 175 | |
---|
| 176 | BIND_CMD("HOME", "popless:scroll-to-top", ""); |
---|
| 177 | BIND_CMD("<", "popless:scroll-to-top", ""); |
---|
| 178 | BIND_CMD("M-<", "popless:scroll-to-top", ""); |
---|
| 179 | |
---|
| 180 | BIND_CMD(">", "popless:scroll-to-bottom", ""); |
---|
| 181 | BIND_CMD("M->", "popless:scroll-to-bottom", ""); |
---|
| 182 | |
---|
| 183 | BIND_CMD("q", "popless:quit", ""); |
---|
| 184 | BIND_CMD("C-c", "popless:quit", ""); |
---|
| 185 | BIND_CMD("C-g", "popless:quit", ""); |
---|
| 186 | |
---|
| 187 | BIND_CMD("C-l", "redisplay", ""); |
---|
| 188 | |
---|
| 189 | |
---|
| 190 | /****************************************************************/ |
---|
| 191 | /***************************** RECV *****************************/ |
---|
| 192 | /****************************************************************/ |
---|
| 193 | |
---|
| 194 | km_mainwin = km = owl_keyhandler_create_and_add_keymap(kh, "recv", |
---|
| 195 | "Main window / message list", |
---|
| 196 | owl_keys_default_invalid, owl_keys_recwin_prealways, NULL); |
---|
| 197 | owl_keymap_set_submap(km_mainwin, km_global); |
---|
[67103d4] | 198 | BIND_CMD("C-x C-c", "start-command quit", ""); |
---|
[7d4fbcd] | 199 | BIND_CMD("F1", "help", ""); |
---|
| 200 | BIND_CMD("h", "help", ""); |
---|
| 201 | BIND_CMD("HELP", "help", ""); |
---|
| 202 | BIND_CMD("M-[ 2 8 ~", "help", ""); |
---|
| 203 | |
---|
| 204 | BIND_CMD(":", "start-command", "start a new command"); |
---|
| 205 | BIND_CMD("M-x", "start-command", "start a new command"); |
---|
| 206 | |
---|
| 207 | BIND_CMD("x", "expunge", ""); |
---|
| 208 | BIND_CMD("u", "undelete", ""); |
---|
[6794f72] | 209 | BIND_CMD("M-u", "undelete view", "undelete all messages in view"); |
---|
[7d4fbcd] | 210 | BIND_CMD("d", "delete", "mark message for deletion"); |
---|
| 211 | BIND_CMD("M-D", "delete view", "mark all messages in view for deletion"); |
---|
[d36f2cb] | 212 | BIND_CMD("C-x k", "smartzpunt -i", "zpunt current <class,instance>"); |
---|
[7d4fbcd] | 213 | |
---|
| 214 | BIND_CMD("X", "( expunge ; view --home )", "expunge deletions and switch to home view"); |
---|
| 215 | |
---|
| 216 | BIND_CMD("v", "start-command view ", "start a view command"); |
---|
| 217 | BIND_CMD("V", "view --home", "change to the home view ('all' by default)"); |
---|
| 218 | BIND_CMD("M-n", "smartnarrow", "narrow to a view based on the current message"); |
---|
| 219 | BIND_CMD("M-N", "smartnarrow -i", "narrow to a view based on the current message, and consider instance pair"); |
---|
[ecd5dc5] | 220 | BIND_CMD("M-p", "view personal", ""); |
---|
| 221 | |
---|
[1fd0b25] | 222 | BIND_CMD("/", "start-command search ", "start a search command"); |
---|
| 223 | BIND_CMD("?", "start-command search -r ", "start a revrerse search command"); |
---|
| 224 | |
---|
[7d4fbcd] | 225 | BIND_CMD("LEFT", "recv:shiftleft", ""); |
---|
| 226 | BIND_CMD("RIGHT", "recv:shiftright",""); |
---|
| 227 | BIND_CMD("DOWN", "recv:next", ""); |
---|
| 228 | BIND_CMD("C-n", "recv:next", ""); |
---|
[7360fab] | 229 | BIND_CMD("M-C-n", "recv:next --smart-filter", "move to next message matching the current one"); |
---|
[7d4fbcd] | 230 | BIND_CMD("UP", "recv:prev", ""); |
---|
| 231 | BIND_CMD("n", "recv:next-notdel", ""); |
---|
| 232 | BIND_CMD("p", "recv:prev-notdel", ""); |
---|
| 233 | BIND_CMD("C-p", "recv:prev", ""); |
---|
[7360fab] | 234 | BIND_CMD("M-C-p", "recv:prev --smart-filter", "move to previous message matching the current one"); |
---|
[7d4fbcd] | 235 | BIND_CMD("P", "recv:next-personal", ""); |
---|
| 236 | BIND_CMD("M-P", "recv:prev-personal", ""); |
---|
| 237 | BIND_CMD("M-<", "recv:first", ""); |
---|
| 238 | BIND_CMD("<", "recv:first", ""); |
---|
| 239 | BIND_CMD("M->", "recv:last", ""); |
---|
| 240 | BIND_CMD(">", "recv:last", ""); |
---|
| 241 | BIND_CMD("C-v", "recv:pagedown", ""); |
---|
| 242 | BIND_CMD("NPAGE", "recv:pagedown", ""); |
---|
| 243 | BIND_CMD("M-v", "recv:pageup", ""); |
---|
| 244 | BIND_CMD("PPAGE", "recv:pageup", ""); |
---|
| 245 | |
---|
| 246 | BIND_CMD("SPACE", "recv:scroll 10", "scroll message down a page"); |
---|
| 247 | BIND_CMD("CR", "recv:scroll 1", "scroll message down a line"); |
---|
| 248 | BIND_CMD("LF", "recv:scroll 1", "scroll message down a line"); |
---|
| 249 | BIND_CMD("C-h" , "recv:scroll -1", "scroll message up a line"); |
---|
| 250 | BIND_CMD("DELETE", "recv:scroll -1", "scroll message up a line"); |
---|
| 251 | BIND_CMD("BACKSPACE", "recv:scroll -1", "scroll message up a line"); |
---|
| 252 | BIND_CMD("DC", "recv:scroll -1", "scroll message up a line"); |
---|
| 253 | BIND_CMD("b", "recv:scroll -10", "scroll message up a page"); |
---|
| 254 | |
---|
| 255 | BIND_CMD("C-l", "redisplay", ""); |
---|
| 256 | |
---|
| 257 | BIND_CMD("i", "info", ""); |
---|
[aa5f725] | 258 | BIND_CMD("l", "blist", ""); |
---|
[38cf544c] | 259 | BIND_CMD("B", "alist", ""); |
---|
[7d4fbcd] | 260 | BIND_CMD("M", "pop-message", ""); |
---|
| 261 | BIND_CMD("T", "delete trash", "mark all 'trash' messages for deletion"); |
---|
| 262 | |
---|
[c3ab155] | 263 | BIND_CMD("o", "toggle-oneline", ""); |
---|
| 264 | |
---|
[7d4fbcd] | 265 | BIND_CMD("A", "zaway toggle", "toggles zaway on and off"); |
---|
| 266 | |
---|
| 267 | BIND_CMD("z", "start-command zwrite ", "start a zwrite command"); |
---|
[440ce01] | 268 | BIND_CMD("a", "start-command aimwrite ", "start an aimwrite command"); |
---|
[7d4fbcd] | 269 | BIND_CMD("r", "reply", "reply to the current message"); |
---|
| 270 | BIND_CMD("R", "reply sender", "reply to sender of the current message"); |
---|
| 271 | BIND_CMD("C-r", "reply -e", "reply to the current message, but allow editing of recipient"); |
---|
[e50cd56] | 272 | BIND_CMD("M-r", "reply -e", "reply to the current message, but allow editing of recipient"); |
---|
| 273 | BIND_CMD("M-R", "reply -e sender", "reply to sender of the current message, but allow editing of recipient"); |
---|
[7d4fbcd] | 274 | |
---|
| 275 | BIND_CMD("w", "openurl", "open a URL using a webbrowser"); |
---|
| 276 | |
---|
| 277 | BIND_CMD("C-c", "", "no effect in this mode"); |
---|
| 278 | BIND_CMD("C-g", "", "no effect in this mode"); |
---|
| 279 | |
---|
| 280 | |
---|
| 281 | /**********************/ |
---|
| 282 | |
---|
| 283 | owl_function_activate_keymap("recv"); |
---|
| 284 | |
---|
| 285 | } |
---|
| 286 | |
---|
| 287 | |
---|
| 288 | /****************************************************************/ |
---|
| 289 | /********************* Support Functions ************************/ |
---|
| 290 | /****************************************************************/ |
---|
| 291 | |
---|
| 292 | void owl_keys_recwin_prealways(int j) { |
---|
| 293 | /* Clear the message line on subsequent key presses */ |
---|
| 294 | owl_function_makemsg(""); |
---|
| 295 | } |
---|
| 296 | |
---|
| 297 | void owl_keys_editwin_default(int j) { |
---|
| 298 | owl_editwin *e; |
---|
| 299 | if (NULL != (e=owl_global_get_typwin(&g))) { |
---|
| 300 | owl_editwin_process_char(e, j); |
---|
| 301 | } |
---|
| 302 | } |
---|
| 303 | |
---|
| 304 | void owl_keys_editwin_postalways(int j) { |
---|
| 305 | owl_editwin *e; |
---|
| 306 | if (NULL != (e=owl_global_get_typwin(&g))) { |
---|
| 307 | owl_editwin_post_process_char(e, j); |
---|
| 308 | } |
---|
| 309 | owl_global_set_needrefresh(&g); |
---|
| 310 | } |
---|
| 311 | |
---|
| 312 | void owl_keys_popless_postalways(int j) { |
---|
| 313 | owl_viewwin *v = owl_global_get_viewwin(&g); |
---|
| 314 | owl_popwin *pw = owl_global_get_popwin(&g); |
---|
| 315 | |
---|
| 316 | if (pw && owl_popwin_is_active(pw) && v) { |
---|
| 317 | owl_viewwin_redisplay(v, 1); |
---|
| 318 | } |
---|
| 319 | } |
---|
| 320 | |
---|
| 321 | void owl_keys_default_invalid(int j) { |
---|
| 322 | if (j==ERR) return; |
---|
| 323 | if (j==410) return; |
---|
| 324 | owl_keyhandler_invalidkey(owl_global_get_keyhandler(&g)); |
---|
| 325 | } |
---|
| 326 | |
---|