AutoHotKey scripts for SuperMemo

From Pleasurable Learning
Revision as of 13:37, 7 May 2021 by Guillem (talk | contribs) (Created page with "Here I will be compiling useful AutoHotKey scripts for SuperMemo: ==Highlight== SuperMemo does not offer a direct keyboard shortcut for highlighting. This script automate...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Here I will be compiling useful AutoHotKey scripts for SuperMemo:

Highlight

SuperMemo does not offer a direct keyboard shortcut for highlighting. This script automates the process of highlighting via commander.

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