b594376a58
- Remove Ctrl+Shift+h map for scrollback - Map kittyscrollback to F1 - Replace instances of Ctrl+Shift with kitty_mod - Switch to MunsMan/kitty-navigator.nvim - Ctrl+Shift+<vim-motions> hard-coded for switching windows - Mappings now properly integrate with nvim
17 lines
387 B
Python
17 lines
387 B
Python
from kittens.tui.handler import result_handler
|
|
from typing import List
|
|
from kitty.boss import Boss
|
|
|
|
|
|
def main():
|
|
pass
|
|
|
|
|
|
directions = ["right", "left", "top", "bottom"]
|
|
|
|
|
|
@result_handler(no_ui=True)
|
|
def handle_result(args: List[str], result: str, target_window_id: int, boss: Boss):
|
|
if len(args) == 2 and args[1] in directions:
|
|
boss.active_tab.neighboring_window(args[1])
|