Difference between revisions of "AutoHotKey scripts for SuperMemo"

From Pleasurable Learning
Jump to navigation Jump to search
Line 3: Line 3:
==Highlight selected text [ctrl+H]==
==Highlight selected text [ctrl+H]==
[[SuperMemo]] does not offer a direct keyboard shortcut for highlighting. This script automates the process of highlighting via commander.
[[SuperMemo]] does not offer a direct keyboard shortcut for highlighting. This script automates the process of highlighting via commander.
Binding: {{Key press|Ctrl|H}}
Binding: <kbd>Ctrl</kbd> + <kbd>H</kbd>
<pre>
<pre>
; highlight selected text
; highlight selected text

Revision as of 14:30, 7 May 2021

Here I will be compiling useful AutoHotKey scripts for SuperMemo along with my suggested key binding.

Highlight selected text [ctrl+H]

SuperMemo does not offer a direct keyboard shortcut for highlighting. This script automates the process of highlighting via commander. Binding: Ctrl + H

; highlight selected text
^H::
{
   send, ^{Enter}
   send, highlighter font
   send, {Enter}
}