当前位置: 首页>>代码示例>>Python>>正文


Python Keys.Backspace方法代码示例

本文整理汇总了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) 
开发者ID:crate,项目名称:crash,代码行数:25,代码来源:keybinding.py

示例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)) 
开发者ID:crate,项目名称:crash,代码行数:8,代码来源:test_keybinding.py


注:本文中的prompt_toolkit.keys.Keys.Backspace方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。