Advertisement
Xelieu

Personal JPMN Options

May 17th, 2023 (edited)
669
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. window.JPMNOptions = {
  2.  
  3. // Insert any runtime options here! They should be of the form:
  4. //
  5. // "key": value,
  6. //
  7. // Some common examples are shown below.
  8.  
  9. // Enables colored pitch accent
  10. "autoPitchAccent.coloredPitchAccent.enabled": true,
  11.  
  12. // Enables image blur
  13. "imgStylizer.mainImage.blur.enabled": true,
  14.  
  15. // Hides the first line of most definitions, as well as the number in the list
  16. "blockquotes.simplifyDefinitions.enabled": true,
  17.  
  18. // ==========================================================================
  19. // = keybinds =
  20. // ==========================================================================
  21.  
  22. // RESERVED KEYS (by anki):
  23. // - e (edit)
  24. // - r (replay)
  25. // - t (stats)
  26. // - y (sync)
  27. // - i (card info)
  28. // - o (options)
  29. // - a (add)
  30. // - s (idk exactly what this does tbh)
  31. // - d (deck)
  32. // - f (filtered deck options)
  33. // - v (play recorded voice)
  34. // - b (browse)
  35. // - m (menu)
  36. // - 1, 2, 3, 4 (again, hard, good, easy)
  37. // - 5 (pause audio)
  38. // - 6 (audio -5s)
  39. // - 7 (audio +5s)
  40. // - space (good)
  41. // - enter (good)
  42. //
  43. // RESERVED KEYS (by AJT Flexible grading):
  44. // - u (undo)
  45. // - h, j, k, l: hard / again / good / easy
  46. //
  47. // FREE KEYS:
  48. // - (left) q w g z x c
  49. // - (right) p n 8 9 0 , . ; ' [ ]
  50. //
  51. // If you want to customize the keybinds, you must find the exact key code
  52. // that corresponds to your key. To do so, set "debug-level" to 0, press the
  53. // desired key(s), and look at the bottom of the debug log (under the info
  54. // circle) within the note. You may need to scroll down.
  55.  
  56. "keybinds.enabled": true,
  57.  
  58. // Keybind to toggle between showing the sentence and word on click and hover cards.
  59. // Equivalent to either clicking on the sentence/word on a click card,
  60. // or hovering over the word on a hover card.
  61. "keybinds.toggleHybridSentence": ["KeyN"],
  62.  
  63. // Keybind to toggle between showing the tested word in a raw sentence card.
  64. // Equivalent to clicking on the "show" button.
  65. // This is the same as the above because both should never happen at the same time.
  66. "keybinds.toggleHighlightWord": ["KeyN"],
  67.  
  68. // Keybind to toggle a vocab card's full sentence display (front side).
  69. // Techinically can be Shift / n as it doesn't interfere with the other two above.
  70. "keybinds.toggleFrontFullSentenceDisplay": ["Quote"],
  71.  
  72. "keybinds.playSentenceAudio": ["KeyP"],
  73.  
  74. "keybinds.playWordAudio": ["KeyR"],
  75.  
  76. // Equivalent to toggling the hint show/hide
  77. "keybinds.toggleHintDisplay": ["Period"],
  78.  
  79. "keybinds.toggleSecondaryDefinitionsDisplay": ["KeyQ"],
  80.  
  81. "keybinds.toggleAdditionalNotesDisplay": ["BracketRight"],
  82.  
  83. "keybinds.toggleExtraDefinitionsDisplay": ["KeyW"],
  84.  
  85. "keybinds.toggleExtraInfoDisplay": ["BracketLeft"],
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement