You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
3.0 KiB

  1. # edvorakjp
  2. epaew's Enhanced Dvorak layout for Japanese Programmer
  3. ## Layout overview
  4. This is a sample. You can swap any symbol keys and modifier keys.
  5. - Basic layout (for ansi)
  6. ```
  7. //+----+----+----+----+----+----+----+----+----+----+----+----+----+---------+
  8. ` , ! , @ , # , $ , % , ^ , & , * , ( , ) , [ , ] , BSPC ,
  9. //+----+-+--+-+--+-+--+-+--+-+--+-+--+-+--+-+--+-+--+-+--+-+--+-+--+-+-------+
  10. TAB , ' , , , . , Y , Q , F , G , R , W , P , / , = , \ ,
  11. //+------++---++---++---++---++---++---++---++---++---++---++---++---+-------+
  12. CAPS , A , O , E , I , U , D , T , N , S , M , - , ENT ,
  13. //+-------+-+--+-+--+-+--+-+--+-+--+-+--+-+--+-+--+-+--+-+--+-+--+-----------+
  14. LSFT , : , X , C , V , Z , H , J , K , L , B , RSFT ,
  15. //+------+--+---++----++---+----+----+----+----+-+--+---++----++------+------+
  16. LCTL , LGUI , LALT , SPACE , RALT , RGUI , MENU , RCTL
  17. //+------+------+------+-------------------------+------+------+------+------+
  18. ```
  19. And you can see [my iris keyboard layout](../../keyboards/iris/keymaps/edvorakjp/keymap.c) for sample implementation, too.
  20. ## for Japanese
  21. - 日本語入力用のキーを追加
  22. - IME 切り替えキー
  23. - 長押しでレイヤー切り替え、短押しでIME切り替え
  24. - macOS(かな/英数)、Windows(Alt+\`)の両方に対応
  25. - Define some custom keys for typing Japanese
  26. - IME switching
  27. - act as LOWER/RAISE when hold, act as IME switching when tapped
  28. - for macOS(かな/英数), for Windows(Alt+\`)
  29. ## for Programmer
  30. - Dvorak 配列をベースに、ショートカットでよく利用される XCV は QWERTY 配列の位置を維持
  31. - 一部にVimユーザ用のキー配置を実施
  32. - HJKL キーを横並びで配置
  33. - Shift押下時と非押下時で、";"キーの挙動を入れ替え
  34. (`config.h` 内で `#define SWAP_SCLN` の宣言が必要です)
  35. - デフォルトレイヤーには、数字キーの代わりに記号 `!@#$%^&*()` を配置
  36. - mainly based on Dvorak layout, but XCV is available in the same position of QWERTY layout
  37. - for Vim users
  38. - HJKL is lining side by side
  39. - swap the ";" key behavior. i.e. send ":" normally and send ";" when you hold shift.
  40. (need `#define SWAP_SCLN` in your `config.h`)
  41. - we can type `!@#$%^&*()` keys without shift keys in base layer
  42. ## License
  43. Copyright 2018 Ryo Maeda epaew.333@gmail.com @epaew
  44. This program is free software: you can redistribute it and/or modify
  45. it under the terms of the GNU General Public License as published by
  46. the Free Software Foundation, either version 2 of the License, or
  47. (at your option) any later version.
  48. This program is distributed in the hope that it will be useful,
  49. but WITHOUT ANY WARRANTY; without even the implied warranty of
  50. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  51. GNU General Public License for more details.
  52. You should have received a copy of the GNU General Public License
  53. along with this program. If not, see <http://www.gnu.org/licenses/>.