Merge pull request #48 from DarkLii/master

fix: 新增ctrl_shift、ctrl_space快捷键操作
This commit is contained in:
mikigo 2024-03-08 09:39:56 +08:00 committed by GitHub
commit a4677cc801
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 18 additions and 0 deletions

View File

@ -643,6 +643,24 @@ class ShortCut(MouseKey):
sleep(1)
cls.hot_key("ctrl", "shift", "s")
@classmethod
def ctrl_shift(cls):
"""
ctrl+shift+s
:return:
"""
sleep(1)
cls.hot_key("ctrl", "shift")
@classmethod
def ctrl_space(cls):
"""
ctrl+shift+s
:return:
"""
sleep(1)
cls.hot_key("ctrl", "space")
@classmethod
def ctrl_alt_v(cls):
"""