fix: 新增ctrl_shift、ctrl_space快捷键操作

Description:

Log:
This commit is contained in:
DarkLii 2024-03-07 14:54:43 +08:00
parent 87f7533f60
commit 2fc2802ff8
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):
"""