]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/xtonhasvim/xtonhasvim.h
turn on permissive hold for my keymap (#3295)
[qmk_firmware.git] / users / xtonhasvim / xtonhasvim.h
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
25 bool process_record_xtonhasvim(uint16_t keycode, keyrecord_t *record);
26
27 enum 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
60 enum xtonhasvim_layers {
61   _EDIT = 12,
62   _CMD
63 };
64
65
66 #endif