aboutsummaryrefslogtreecommitdiff
path: root/users/xtonhasvim/xtonhasvim.h
diff options
context:
space:
mode:
authorxton <cmdpix@mac.com>2018-05-12 08:52:11 -0700
committerDrashna Jaelre <drashna@live.com>2018-05-12 08:52:11 -0700
commit05be1de1aa35f15b71ebfdf2f142fca50609ef31 (patch)
tree4db990cd5fcb659d3301b10a129b4d03bdc43ba5 /users/xtonhasvim/xtonhasvim.h
parent5b503cc5438fdc4f9b13ae3d697d28c3824f2b75 (diff)
downloadqmk_firmware-05be1de1aa35f15b71ebfdf2f142fca50609ef31.tar.gz
qmk_firmware-05be1de1aa35f15b71ebfdf2f142fca50609ef31.zip
Xton's first keymap! (#2941)
* FORK! * WIP - just how i like it * empty * more movement * mouse keys * more vimminess * append/insert shift * WIP - vim macros * blocked out layer below in cmd mode. also, about to restart my cmd approach. * WIP - new vim layer ripoff of the ergodox one, but rewritten as a state machine. * debugged some, got key repeat working * moooar coverage * moooar coverage * regular vis mode * basically done with basics. * some refactoring - common movement sequences into helper function - added some rgb controls * modkey passthru feature * stdized on cmd-left/right instead of ctrl-a/e sadly. as there's no reliable shift-ctrl-e * indicator lights * moved vim layer into userspace * cleaned up some yanking edge cases * docs and some tweaks to layerescapes * updated/added license strings * updated comments * moved config changes to keymap * spurious changes removed
Diffstat (limited to 'users/xtonhasvim/xtonhasvim.h')
-rw-r--r--users/xtonhasvim/xtonhasvim.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/users/xtonhasvim/xtonhasvim.h b/users/xtonhasvim/xtonhasvim.h
new file mode 100644
index 000000000..21b794c03
--- /dev/null
+++ b/users/xtonhasvim/xtonhasvim.h
@@ -0,0 +1,66 @@
1 /* Copyright 2015-2017 Christon DeWan
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#ifndef USERSPACE
18#define USERSPACE
19
20#include QMK_KEYBOARD_H
21#include "action_layer.h"
22
23#define X_____X KC_NO
24
25bool process_record_xtonhasvim(uint16_t keycode, keyrecord_t *record);
26
27enum xtonhasvim_keycodes {
28 DUMMY = SAFE_RANGE,
29 VIM_START, // bookend for vim states
30 VIM_A,
31 VIM_B,
32 VIM_C,
33 VIM_CI,
34 VIM_D,
35 VIM_DI,
36 VIM_E,
37 VIM_H,
38 VIM_G,
39 VIM_I,
40 VIM_J,
41 VIM_K,
42 VIM_L,
43 VIM_O,
44 VIM_P,
45 VIM_S,
46 VIM_U,
47 VIM_V,
48 VIM_VS, // visual-line
49 VIM_VI,
50 VIM_W,
51 VIM_X,
52 VIM_Y,
53 VIM_PERIOD, // to support indent/outdent
54 VIM_COMMA, // and toggle comments
55 VIM_SHIFT, // avoid side-effect of supporting real shift.
56 VIM_ESC, // bookend
57 VIM_SAFE_RANGE // start other keycodes here.
58};
59
60enum xtonhasvim_layers {
61 _EDIT = 12,
62 _CMD
63};
64
65
66#endif