xtonhasvim.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. #include "action_layer.h"
  20. #define X_____X KC_NO
  21. bool process_record_xtonhasvim(uint16_t keycode, keyrecord_t *record);
  22. enum xtonhasvim_keycodes {
  23. DUMMY = SAFE_RANGE,
  24. VIM_START, // bookend for vim states
  25. VIM_A,
  26. VIM_B,
  27. VIM_C,
  28. VIM_CI,
  29. VIM_D,
  30. VIM_DI,
  31. VIM_E,
  32. VIM_H,
  33. VIM_G,
  34. VIM_I,
  35. VIM_J,
  36. VIM_K,
  37. VIM_L,
  38. VIM_O,
  39. VIM_P,
  40. VIM_S,
  41. VIM_U,
  42. VIM_V,
  43. VIM_VS, // visual-line
  44. VIM_VI,
  45. VIM_W,
  46. VIM_X,
  47. VIM_Y,
  48. VIM_PERIOD, // to support indent/outdent
  49. VIM_COMMA, // and toggle comments
  50. VIM_SHIFT, // avoid side-effect of supporting real shift.
  51. VIM_ESC, // bookend
  52. VIM_SAFE_RANGE // start other keycodes here.
  53. };
  54. enum xtonhasvim_layers {
  55. _EDIT = 12,
  56. _CMD
  57. };
  58. #endif