New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vim-like navigation #3778
Comments
navigation of what? If you mean the scrollback, kitty display the |
tabs, panes navigation |
You can change all shortcuts in kitty to whatever you like, read the |
See https://sw.kovidgoyal.net/kitty/#tabs for example. |
I've managed to do something like that
However I couldn't manage to do few things
I'm trying to do something similar to tmux-tillish. |
Use neighboring_window to move to neighboring windows https://sw.kovidgoyal.net/kitty/actions.html#neighboring-window And I dont know what you mean by toggling a layout, but probably this: https://sw.kovidgoyal.net/kitty/kittens/custom.html#using-kittens-to-script-kitty-without-any-terminal-ui |
works perfectly, thanks if anyone is interested in my current configuration, here it is:
def main(args):
pass
from kittens.tui.handler import result_handler
@result_handler(no_ui=True)
def handle_result(args, answer, target_window_id, boss):
tab = boss.active_tab
if tab is not None:
if tab.current_layout.name == 'stack':
tab.last_used_layout()
else:
tab.goto_layout('stack') |
@kovidgoyal Hi, Is it possible to use
I use this to move around, but the only way I found to move around in stack layout is previous and next windows. |
Sure 75b73f6 |
Hi, is it possible to use
hjkl
for navigation instead arrows? I'm looking into switching from alacritty+tmux to kitty, but that is strongly rejecting me.The text was updated successfully, but these errors were encountered: