xtonhasvim.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. #ifndef USERSPACE
  17. #define USERSPACE
  18. #include QMK_KEYBOARD_H
  19. enum xtonhasvim_keycodes {
  20. VIM_START = SAFE_RANGE, // bookend for vim states
  21. VIM_A,
  22. VIM_B,
  23. VIM_C,
  24. VIM_CI,
  25. VIM_D,
  26. VIM_DI,
  27. VIM_E,
  28. VIM_H,
  29. VIM_G,
  30. VIM_I,
  31. VIM_J,
  32. VIM_K,
  33. VIM_L,
  34. VIM_O,
  35. VIM_P,
  36. VIM_S,
  37. VIM_U,
  38. VIM_V,
  39. VIM_VS, // visual-line
  40. VIM_VI,
  41. VIM_W,
  42. VIM_X,
  43. VIM_Y,
  44. VIM_PERIOD, // to support indent/outdent
  45. VIM_COMMA, // and toggle comments
  46. VIM_SHIFT, // avoid side-effect of supporting real shift.
  47. VIM_ESC, // bookend
  48. VIM_SAFE_RANGE // start other keycodes here.
  49. };
  50. bool process_record_vimlayer(uint16_t keycode, keyrecord_t *record);
  51. // NOTE: Define this in keymap.c to return vim layer
  52. extern uint8_t vim_cmd_layer(void);
  53. extern uint16_t vstate;
  54. #endif