Add shortcuts for jumping to prev/next shell prompt

This commit is contained in:
Kovid Goyal
2021-07-13 14:45:13 +05:30
parent bd5f100f13
commit 51fa25e03d
9 changed files with 54 additions and 11 deletions

View File

@@ -47,6 +47,7 @@ def remove_markup(text: str) -> str:
'sessions': f'{website_url("overview")}#startup-sessions',
'functional': f'{website_url("keyboard-protocol")}#functional-key-definitions',
'action-select_tab': f'{website_url("actions")}#select-tab',
'shell_integration': website_url("shell-integration"),
}
def sub(m: Match) -> str:

View File

@@ -1016,6 +1016,9 @@ class Screen:
def scroll_to_next_mark(self, mark: int = 0, backwards: bool = True) -> bool:
pass
def scroll_to_prompt(self, num_of_prompts: int = -1) -> bool:
pass
def reverse_scroll(self, amt: int, fill_from_scrollback: bool = False) -> bool:
pass

View File

@@ -2892,6 +2892,20 @@ map('Scroll to bottom',
only="macos",
)
map('Scroll to previous shell prompt',
'scroll_to_previous_prompt kitty_mod+x scroll_to_prompt -1',
long_text='''
Requires :ref:`shell_integration` to work.
'''
)
map('Scroll to next shell prompt',
'scroll_to_next_prompt kitty_mod+d scroll_to_prompt 1',
long_text='''
Requires :ref:`shell_integration` to work.
'''
)
map('Browse scrollback buffer in less',
'show_scrollback kitty_mod+h show_scrollback',
long_text='''

View File

@@ -712,6 +712,10 @@ defaults.map = [
KeyDefinition(False, KeyAction('scroll_home'), 1024, False, 57356, ()),
# scroll_end
KeyDefinition(False, KeyAction('scroll_end'), 1024, False, 57357, ()),
# scroll_to_previous_prompt
KeyDefinition(False, KeyAction('scroll_to_prompt', (-1,)), 1024, False, 120, ()),
# scroll_to_next_prompt
KeyDefinition(False, KeyAction('scroll_to_prompt', (1,)), 1024, False, 100, ()),
# show_scrollback
KeyDefinition(False, KeyAction('show_scrollback'), 1024, False, 104, ()),
# new_window

View File

@@ -249,13 +249,14 @@ def remote_control(func: str, rest: str) -> FuncArgsType:
return func, r
@func_with_args('nth_window')
def nth_window(func: str, rest: str) -> FuncArgsType:
@func_with_args('nth_window', 'scroll_to_prompt')
def single_integer_arg(func: str, rest: str) -> FuncArgsType:
try:
num = int(rest)
except Exception:
log_error('Invalid nth_window number: {}'.format(rest))
num = 1
if rest:
log_error(f'Invalid number for {func}: {rest}')
num = -1 if func == 'scroll_to_prompt' else 1
return func, [num]

View File

@@ -1032,6 +1032,20 @@ class Window:
if self.screen.is_main_linebuf():
self.screen.scroll(SCROLL_FULL, False)
@ac('sc', '''
Scroll to the previous/next shell command prompt
Allows easy jumping from one command to the next. Requires working
:ref:`shell_integration`. Takes a single, optional, number as argument which is
the number of prompts to jump, negative values jump up and positive values jump down.
For example::
map ctrl+p scroll_to_prompt -1 # jump to previous
map ctrl+n scroll_to_prompt 1 # jump to next
''')
def scroll_to_prompt(self, num_of_prompts: int = -1) -> None:
if self.screen.is_main_linebuf():
self.screen.scroll_to_prompt(num_of_prompts)
@ac('mk', 'Toggle the current marker on/off')
def toggle_marker(self, ftype: str, spec: Union[str, Tuple[Tuple[int, str], ...]], flags: int) -> None:
from .marks import marker_from_spec