diff options
Diffstat (limited to 'users/twschum/xtonhasvim.h')
| -rw-r--r-- | users/twschum/xtonhasvim.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/users/twschum/xtonhasvim.h b/users/twschum/xtonhasvim.h new file mode 100644 index 000000000..fd9ebd4f0 --- /dev/null +++ b/users/twschum/xtonhasvim.h | |||
| @@ -0,0 +1,62 @@ | |||
| 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 | |||
| 22 | enum xtonhasvim_keycodes { | ||
| 23 | VIM_START = SAFE_RANGE, // bookend for vim states | ||
| 24 | VIM_A, | ||
| 25 | VIM_B, | ||
| 26 | VIM_C, | ||
| 27 | VIM_CI, | ||
| 28 | VIM_D, | ||
| 29 | VIM_DI, | ||
| 30 | VIM_E, | ||
| 31 | VIM_H, | ||
| 32 | VIM_G, | ||
| 33 | VIM_I, | ||
| 34 | VIM_J, | ||
| 35 | VIM_K, | ||
| 36 | VIM_L, | ||
| 37 | VIM_O, | ||
| 38 | VIM_P, | ||
| 39 | VIM_S, | ||
| 40 | VIM_U, | ||
| 41 | VIM_V, | ||
| 42 | VIM_VS, // visual-line | ||
| 43 | VIM_VI, | ||
| 44 | VIM_W, | ||
| 45 | VIM_X, | ||
| 46 | VIM_Y, | ||
| 47 | VIM_PERIOD, // to support indent/outdent | ||
| 48 | VIM_COMMA, // and toggle comments | ||
| 49 | VIM_SHIFT, // avoid side-effect of supporting real shift. | ||
| 50 | VIM_ESC, // bookend | ||
| 51 | VIM_SAFE_RANGE // start other keycodes here. | ||
| 52 | }; | ||
| 53 | |||
| 54 | bool process_record_vimlayer(uint16_t keycode, keyrecord_t *record); | ||
| 55 | |||
| 56 | // NOTE: Define this in keymap.c to return vim layer | ||
| 57 | extern uint8_t vim_cmd_layer(void); | ||
| 58 | |||
| 59 | extern uint16_t vstate; | ||
| 60 | |||
| 61 | |||
| 62 | #endif | ||
