From c57464701eeb39c57d09dfd584bc44a80c45ce28 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Tue, 6 Jan 2015 05:56:38 -0200 Subject: vimprobable2-git: add new package to [pcr] --- pcr/vimprobable2-git/keymap.h | 156 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 156 insertions(+) create mode 100644 pcr/vimprobable2-git/keymap.h (limited to 'pcr/vimprobable2-git/keymap.h') diff --git a/pcr/vimprobable2-git/keymap.h b/pcr/vimprobable2-git/keymap.h new file mode 100644 index 000000000..b0c081910 --- /dev/null +++ b/pcr/vimprobable2-git/keymap.h @@ -0,0 +1,156 @@ +/* + (c) 2009 by Leon Winter + (c) 2009-2011 by Hannes Schueller + (c) 2009-2010 by Matto Fransen + (c) 2010-2011 by Hans-Peter Deifel + (c) 2010-2011 by Thomas Adam + (c) 2011 by Albert Kim + see LICENSE file +*/ +#ifndef _KEYMAP + +#define _KEYMAP + +/* key bindings for normal mode + Note: GDK_VoidSymbol is a wildcard so it matches on every modkey +*/ +Key keys[] = { + /* modmask, modkey, key, function, argument */ + { 0, GDK_q, GDK_1, quickmark, { .s = "1" } }, + { 0, GDK_q, GDK_2, quickmark, { .s = "2" } }, + { 0, GDK_q, GDK_3, quickmark, { .s = "3" } }, + { 0, GDK_q, GDK_4, quickmark, { .s = "4" } }, + { 0, GDK_q, GDK_5, quickmark, { .s = "5" } }, + { 0, GDK_q, GDK_6, quickmark, { .s = "6" } }, + { 0, GDK_q, GDK_7, quickmark, { .s = "7" } }, + { 0, GDK_q, GDK_8, quickmark, { .s = "8" } }, + { 0, GDK_q, GDK_9, quickmark, { .s = "9" } }, + { 0, GDK_Q, GDK_1, quickmark, { .s = "1", .i = 1 } }, + { 0, GDK_Q, GDK_2, quickmark, { .s = "2", .i = 1 } }, + { 0, GDK_Q, GDK_3, quickmark, { .s = "3", .i = 1 } }, + { 0, GDK_Q, GDK_4, quickmark, { .s = "4", .i = 1 } }, + { 0, GDK_Q, GDK_5, quickmark, { .s = "5", .i = 1 } }, + { 0, GDK_Q, GDK_6, quickmark, { .s = "6", .i = 1 } }, + { 0, GDK_Q, GDK_7, quickmark, { .s = "7", .i = 1 } }, + { 0, GDK_Q, GDK_8, quickmark, { .s = "8", .i = 1 } }, + { 0, GDK_Q, GDK_9, quickmark, { .s = "9", .i = 1 } }, + { 0, 0, GDK_0, scroll, {ScrollJumpTo | DirectionLeft} }, + { 0, 0, GDK_dollar, scroll, {ScrollJumpTo | DirectionRight} }, + { 0, GDK_g, GDK_g, scroll, {ScrollJumpTo | DirectionTop} }, + { 0, 0, GDK_G, scroll, {ScrollJumpTo | DirectionBottom} }, + { 0, 0, GDK_h, scroll, {ScrollMove | DirectionLeft | UnitLine} }, + { 0, 0, GDK_j, scroll, {ScrollMove | DirectionBottom | UnitLine} }, + { 0, 0, GDK_k, scroll, {ScrollMove | DirectionTop | UnitLine} }, + { 0, 0, GDK_l, scroll, {ScrollMove | DirectionRight | UnitLine} }, + { 0, 0, GDK_space, scroll, {ScrollMove | DirectionBottom | UnitPage} }, + { GDK_SHIFT_MASK, 0, GDK_space, scroll, {ScrollMove | DirectionTop | UnitPage} }, + { GDK_CONTROL_MASK, 0, GDK_b, scroll, {ScrollMove | DirectionTop | UnitPage} }, + { GDK_CONTROL_MASK, 0, GDK_f, scroll, {ScrollMove | DirectionBottom | UnitPage} }, + { GDK_CONTROL_MASK, 0, GDK_d, scroll, {ScrollMove | DirectionBottom | UnitBuffer} }, + { GDK_CONTROL_MASK, 0, GDK_u, scroll, {ScrollMove | DirectionTop | UnitBuffer} }, + { GDK_CONTROL_MASK, 0, GDK_e, scroll, {ScrollMove | DirectionBottom | UnitLine} }, + { GDK_CONTROL_MASK, 0, GDK_y, scroll, {ScrollMove | DirectionTop | UnitLine} }, + + { 0, GDK_g, GDK_t, fake_key_event, { .s = "l", .i = ShiftMask + ControlMask } }, + { 0, GDK_g, GDK_T, fake_key_event, { .s = "h", .i = ShiftMask + ControlMask } }, + { 0, GDK_g, GDK_1, fake_key_event, { .s = "1", .i = ControlMask } }, + { 0, GDK_g, GDK_2, fake_key_event, { .s = "2", .i = ControlMask } }, + { 0, GDK_g, GDK_3, fake_key_event, { .s = "3", .i = ControlMask } }, + { 0, GDK_g, GDK_4, fake_key_event, { .s = "4", .i = ControlMask } }, + { 0, GDK_g, GDK_5, fake_key_event, { .s = "5", .i = ControlMask } }, + { 0, GDK_g, GDK_6, fake_key_event, { .s = "6", .i = ControlMask } }, + { 0, GDK_g, GDK_7, fake_key_event, { .s = "7", .i = ControlMask } }, + { 0, GDK_g, GDK_8, fake_key_event, { .s = "8", .i = ControlMask } }, + { 0, GDK_g, GDK_9, fake_key_event, { .s = "9", .i = ControlMask } }, + { 0, GDK_g, GDK_0, fake_key_event, { .s = "0", .i = ControlMask } }, + + { GDK_CONTROL_MASK, 0, GDK_i, navigate, {NavigationBack} }, + { GDK_CONTROL_MASK, 0, GDK_o, navigate, {NavigationForward} }, + { 0, 0, GDK_b, navigate, {NavigationBack} }, + { 0, 0, GDK_H, navigate, {NavigationBack} }, + { 0, 0, GDK_m, navigate, {NavigationForward} }, + { 0, 0, GDK_L, navigate, {NavigationForward} }, + { 0, 0, GDK_r, navigate, {NavigationReload} }, + { 0, 0, GDK_R, navigate, {NavigationForceReload} }, + { GDK_CONTROL_MASK, 0, GDK_s, navigate, {NavigationCancel} }, + + { 0, 0, GDK_plus, zoom, {ZoomIn | ZoomText} }, + { 0, 0, GDK_minus, zoom, {ZoomOut | ZoomText} }, + { 0, 0, GDK_KP_Add, zoom, {ZoomIn | ZoomText} }, + { 0, 0, GDK_KP_Subtract,zoom, {ZoomOut | ZoomText} }, + { 0, GDK_z, GDK_i, zoom, {ZoomIn | ZoomText} }, + { 0, GDK_z, GDK_o, zoom, {ZoomOut | ZoomText} }, + { 0, GDK_z, GDK_z, zoom, {ZoomReset | ZoomText} }, + { 0, GDK_z, GDK_I, zoom, {ZoomIn | ZoomFullContent} }, + { 0, GDK_z, GDK_O, zoom, {ZoomOut | ZoomFullContent} }, + { 0, GDK_z, GDK_Z, zoom, {ZoomReset | ZoomFullContent} }, + + { 0, 0, GDK_y, yank, {SourceURL | ClipboardPrimary | ClipboardGTK} }, + { 0, 0, GDK_Y, yank, {SourceSelection| ClipboardPrimary | ClipboardGTK} }, + + { 0, GDK_g, GDK_u, descend, {NthSubdir} }, + { 0, GDK_g, GDK_U, descend, {Rootdir} }, + + { 0, GDK_g, GDK_h, open_arg, {TargetCurrent, startpage} }, + { 0, GDK_g, GDK_H, open_arg, {TargetNew, startpage} }, + + { 0, 0, GDK_p, paste, {TargetCurrent | ClipboardPrimary | ClipboardGTK} }, + { 0, 0, GDK_P, paste, {TargetNew | ClipboardPrimary | ClipboardGTK} }, + + { GDK_CONTROL_MASK, 0, GDK_a, number, {Increment} }, + { GDK_CONTROL_MASK, 0, GDK_x, number, {Decrement} }, + + { 0, 0, GDK_n, search, {DirectionNext | CaseInsensitive | Wrapping} }, + { 0, 0, GDK_N, search, {DirectionPrev | CaseInsensitive | Wrapping} }, + + { 0, 0, GDK_colon, input, {.s = ":" } }, + { 0, 0, GDK_o, input, {.s = ":open "} }, + { 0, 0, GDK_O, input, {.s = ":open ", .i = InsertCurrentURL} }, + { 0, 0, GDK_t, input, {.s = ":tabopen "} }, + { 0, 0, GDK_T, input, {.s = ":tabopen ", .i = InsertCurrentURL} }, + { 0, 0, GDK_slash, input, {.s = "/"} }, + { 0, 0, GDK_KP_Divide, input, {.s = "/"} }, + { 0, 0, GDK_question, input, {.s = "?"} }, + + { 0, 0, GDK_period, input, {.s = "."} }, + { 0, 0, GDK_comma, input, {.s = ","} }, + { 0, GDK_semicolon, GDK_i, input, {.s = ";i"} }, + { 0, GDK_semicolon, GDK_l, input, {.s = ";l"} }, + { 0, GDK_semicolon, GDK_s, input, {.s = ";s"} }, + { 0, GDK_semicolon, GDK_y, input, {.s = ";y"} }, + { 0, GDK_semicolon, GDK_o, input, {.s = ";o"} }, + { 0, GDK_semicolon, GDK_t, input, {.s = ";t"} }, + { 0, GDK_semicolon, GDK_w, input, {.s = ";w"} }, + { 0, GDK_semicolon, GDK_I, input, {.s = ";I"} }, + { 0, GDK_semicolon, GDK_O, input, {.s = ";O"} }, + { 0, GDK_semicolon, GDK_T, input, {.s = ";T"} }, + { 0, GDK_semicolon, GDK_W, input, {.s = ";W"} }, + + /* this needs to be a binding using CTRL for obvious reasons */ + { GDK_CONTROL_MASK, 0, GDK_t, open_editor,{} }, + + { 0, GDK_VoidSymbol, GDK_Escape, set, {ModeNormal} }, + { GDK_CONTROL_MASK, GDK_VoidSymbol, GDK_bracketleft,set, {ModeNormal} }, + { GDK_CONTROL_MASK, 0, GDK_p, set, {ModePassThrough} }, + { GDK_CONTROL_MASK, 0, GDK_v, set, {ModeSendKey} }, + { 0, 0, GDK_f, input, {.s = "."} }, + { 0, 0, GDK_F, input, {.s = ","} }, + + { 0, GDK_g, GDK_i, focus_input,{} }, + { 0, 0, GDK_u, revive, {} }, + + + /* custom commands */ + { 0, GDK_g, GDK_b, input, {.s = ":tabopen http://bitbucket.jasonwryan.com" } }, + { 0, GDK_g, GDK_e, input, {.s = ":tabopen https://wiki.archlinux.org/index.php/Forum_Etiquette" } }, + { 0, GDK_g, GDK_f, input, {.s = ":tabopen http://flickr.jasonwryan.com" } }, + { 0, GDK_g, GDK_j, input, {.s = ":tabopen http://jasonwryan.com" } }, + { 0, GDK_g, GDK_p, input, {.s = ":tabopen http://127.0.0.1:4000" } }, + { 0, GDK_g, GDK_r, input, {.s = ":tabopen https://www.inoreader.com/" } }, + { 0, GDK_g, GDK_s, input, {.s = ":tabopen https://unix.stackexchange.com" } }, + { 0, 0, GDK_x, quit, {0} }, + /* leave this last line as last */ + { 0, 0, 0, 0, {0} }, +}; + +#endif -- cgit v1.2.3-54-g00ecf