We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clipboard = abc一二三
会报错: Setting Clipboard failed. Error: 'Setting Clipboard failed.'
Setting Clipboard failed.
::aa::abc一二三
会只输出: abc,是因为这里处理与autohotkey不同,AHK_X11是模拟按键的,所以 Will only output: 'abc', because unlike autohotkey, AHK_X11 simulates keys, so
abc
::aa::abc|
会输出abc\ 与 ::aa::abc\一样 Will output 'abc' as' ::aa::abc\ ' 想输出abc| ,需要用 Want to output 'abc|', need to use ::aa::abc+\ ; shift + \ => |
abc\
::aa::abc\
abc|
The text was updated successfully, but these errors were encountered:
No branches or pull requests
会报错:
Setting Clipboard failed.
Error: 'Setting Clipboard failed.'
会只输出:
abc
,是因为这里处理与autohotkey不同,AHK_X11是模拟按键的,所以Will only output: 'abc', because unlike autohotkey, AHK_X11 simulates keys, so
会输出
abc\
与::aa::abc\
一样Will output 'abc' as' ::aa::abc\ '
想输出
abc|
,需要用Want to output 'abc|', need to use
::aa::abc+\ ; shift + \ => |
The text was updated successfully, but these errors were encountered: