gpt4 book ai didi

ios - AutoHotKey iOS 双空格脚本

转载 作者:行者123 更新时间:2023-11-29 11:08:30 30 4
gpt4 key购买 nike

在 iOS 中,“设置”>“通用”>“键盘”中有一个名为“”的选项。捷径'。启用后,“双击空格键将插入一个句点后跟一个空格”并自动将下一个字母大写。

有谁知道如何着手创建 AutoHotKey 脚本来执行此操作,因为我发现它在 iOS 中非常有用?

最佳答案

本,

你可以试试这个:

~$Space:: ; trigger on {Space}
if (A_PriorHotkey <> "~$Space" or A_TimeSincePriorHotkey > 250)
Return
SendInput, {BS 2}.{Space}
Input, NextKey, I L1 T10 V B, {LControl}{RControl}{LAlt}{RAlt}{LShift}{RShift}{LWin}{RWin}{AppsKey}{F1}{F2}{F3}{F4}{F5}{F6}{F7}{F8}{F9}{F10}{F11}{F12}{Left}{Right}{Up}{Down}{Home}{End}{PgUp}{PgDn}{Del}{Ins}{BS}{Capslock}{Numlock}{PrintScreen}{Pause}

If NextKey and NextKey is lower
SendInput, {BS}+%NextKey%
Return

关于ios - AutoHotKey iOS 双空格脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12674830/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com