Одним из самых простых вариантов было бы просто использовать TextExpander. Вы также можете настроить сокращения в текстовом файле, а затем импортировать его как группу.
Также можно добавлять символы в печать и удерживать всплывающие окна.
Я использовал FastScripts, чтобы назначить ярлык для этого сценария:
try
set old to the clipboard as record
end try
try
tell application "System Events"
key code 123 using {option down, shift down}
keystroke "c" using command down
end tell
delay 0.05
set input to the clipboard
if input contains return then error
set p1 to read POSIX file "/Users/lauri/Notes/snippets.txt" as «class utf8» using delimiter linefeed
set p2 to read POSIX file "/Users/lauri/Projects/unicode/html_entities.txt" as «class utf8» using delimiter linefeed
repeat with p in p1 & p2
considering case
if p starts with (input & " ") then
set the clipboard to text ((offset of space in p) + 1) thru -1 of p
tell application "System Events" to keystroke "v" using command down
delay 0.05
exit repeat
end if
end considering
end repeat
end try
try
set the clipboard to old
end try
html_entities.txt - это список сокращений, используемых для ссылок на символы HTML.
Вы также можете создать ~/Library/KeyBindings/
и сохранить список свойств, такой как DefaultKeyBinding.dict. После повторного открытия заявки, shouldA должен вставить α
. insertText:
похоже, не работает с U+10000
или символами над ним.
{
"~a" = (insertText:, "α");
}