There was an error while loading. Please reload this page.
1 parent 0f6e581 commit 8769be9Copy full SHA for 8769be9
prompt_toolkit/key_binding/bindings/vi.py
@@ -978,6 +978,7 @@ def _(event):
978
return CursorRegion(pos)
979
980
@handle('z', '+', filter=navigation_mode|selection_mode)
981
+ @handle('z', 't', filter=navigation_mode|selection_mode)
982
@handle('z', Keys.ControlJ, filter=navigation_mode|selection_mode)
983
def _(event):
984
"""
@@ -997,6 +998,7 @@ def _(event):
997
998
999
1000
@handle('z', '-', filter=navigation_mode|selection_mode)
1001
+ @handle('z', 'b', filter=navigation_mode|selection_mode)
1002
1003
1004
Scrolls the window to makes the current line the last line in the visible region.
0 commit comments