]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/xtonhasvim/xtonhasvim.h
Keymap: xtonhasvim updates (#3768)
[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   FIREY_RETURN, // kick off special effects
30   VIM_START, // bookend for vim states
31   VIM_A,
32   VIM_B,
33   VIM_C,
34   VIM_CI,
35   VIM_D,
36   VIM_DI,
37   VIM_E,
38   VIM_H,
39   VIM_G,
40   VIM_I,
41   VIM_J,
42   VIM_K,
43   VIM_L,
44   VIM_O,
45   VIM_P,
46   VIM_S,
47   VIM_U,
48   VIM_V,
49   VIM_VS, // visual-line
50   VIM_VI,
51   VIM_W,
52   VIM_X,
53   VIM_Y,
54   VIM_PERIOD, // to support indent/outdent
55   VIM_COMMA,  // and toggle comments
56   VIM_SHIFT, // avoid side-effect of supporting real shift.
57   VIM_ESC, // bookend
58   VIM_SAFE_RANGE // start other keycodes here.
59 };
60
61 // NOTE: YOU MUST DEFINE THIS
62 extern uint8_t vim_cmd_layer(void);
63
64 extern uint16_t vstate;
65
66
67 #endif