Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. {
  2. "title": "For Japanese",
  3. "rules": [
  4. {
  5. "description": "toggle eisuu with command + space",
  6. "manipulators": [
  7. {
  8. "type": "basic",
  9. "from": {
  10. "key_code": "spacebar",
  11. "modifiers": { "mandatory": "left_command" }
  12. },
  13. "conditions": [
  14. {
  15. "type": "input_source_if",
  16. "input_sources": [
  17. { "language": "en" }
  18. ]
  19. }
  20. ],
  21. "to": [{ "key_code": "japanese_kana" }]
  22. },
  23. {
  24. "type": "basic",
  25. "from": {
  26. "key_code": "spacebar",
  27. "modifiers": { "mandatory": "left_command" }
  28. },
  29. "conditions": [
  30. {
  31. "type": "input_source_if",
  32. "input_sources": [
  33. { "language": "ja" }
  34. ]
  35. }
  36. ],
  37. "to": [{ "key_code": "japanese_eisuu" }]
  38. }
  39. ]
  40. }
  41. ]
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement