本文整理汇总了Python中prompt_toolkit.keys.Keys.Backspace方法的典型用法代码示例。如果您正苦于以下问题:Python Keys.Backspace方法的具体用法?Python Keys.Backspace怎么用?Python Keys.Backspace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类prompt_toolkit.keys.Keys
的用法示例。
在下文中一共展示了Keys.Backspace方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: bind_keys
# 需要导入模块: from prompt_toolkit.keys import Keys [as 别名]
# 或者: from prompt_toolkit.keys.Keys import Backspace [as 别名]
def bind_keys(buf, key_bindings):
handle = key_bindings.add
@handle('c-d')
def exit_(event):
event.app.exit(exception=EOFError, style='class:exiting')
@handle('c-c')
def interrupt_(event):
event.app.exit(exception=KeyboardInterrupt, style='class:aborting')
@handle('c-z')
def suspend_(event):
event.app.suspend_to_background()
@handle(Keys.Tab, filter=mk_filter(buf, _is_start_of_multiline))
def on_tab(event):
event.cli.current_buffer.insert_text(' ' * TAB_WIDTH)
@handle(Keys.Backspace, filter=mk_filter(buf, _line_ends_with_tab))
def on_backspace(event):
event.cli.current_buffer.delete_before_cursor(TAB_WIDTH)
示例2: test_bindings
# 需要导入模块: from prompt_toolkit.keys import Keys [as 别名]
# 或者: from prompt_toolkit.keys.Keys import Backspace [as 别名]
def test_bindings(self):
kb = KeyBindings()
bind_keys(Buffer(), kb)
self.assertTrue('on_backspace' in handlers_for_key(kb, Keys.Backspace))
self.assertTrue('on_tab' in handlers_for_key(kb, Keys.Tab))