📄 jetcursor.py
字号:
#
# jetCursor.py: jet variant on ANSI cursor
#
from ccCursor import ccCursor
class jetCursor(ccCursor):
"""Jet cursor using "+" for concatenation and specialized DROP_INDEX."""
def DROP_INDEX(self, index, table):
return "DROP INDEX %s ON %s" % (index, table)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -