本文整理汇总了Python中prompt_toolkit.keys.Keys.F9属性的典型用法代码示例。如果您正苦于以下问题:Python Keys.F9属性的具体用法?Python Keys.F9怎么用?Python Keys.F9使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类prompt_toolkit.keys.Keys
的用法示例。
在下文中一共展示了Keys.F9属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_bindings
# 需要导入模块: from prompt_toolkit.keys import Keys [as 别名]
# 或者: from prompt_toolkit.keys.Keys import F9 [as 别名]
def get_bindings(settings):
bindings = KeyBindings()
@bindings.add(Keys.F2)
def _(event):
settings.set_next_cluster()
@bindings.add(Keys.F3)
def _(event):
settings.set_enable_fuzzy_search(not settings.enable_fuzzy_search)
@bindings.add(Keys.F9)
def _(event):
settings.set_enable_help(not settings.enable_help)
@bindings.add(Keys.F10)
def _(event):
current.get_app().exit(exception=EOFError)
return bindings
示例2: test_F9
# 需要导入模块: from prompt_toolkit.keys import Keys [as 别名]
# 或者: from prompt_toolkit.keys.Keys import F9 [as 别名]
def test_F9(self):
assert self.aws_shell.cli.current_buffer_name == u'DEFAULT_BUFFER'
self.feed_key(Keys.F9)
assert self.aws_shell.cli.current_buffer_name == u'clidocs'