mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-26 04:15:38 +00:00
34 lines
791 B
Python
34 lines
791 B
Python
from kittens.tui.handler import result_handler
|
|
|
|
|
|
def main(args):
|
|
pass
|
|
|
|
|
|
def toggle_term(boss):
|
|
tab = boss.active_tab
|
|
|
|
all_another_wins = tab.all_window_ids_except_active_window
|
|
have_only_one = len(all_another_wins) == 0
|
|
|
|
if have_only_one:
|
|
boss.launch('--cwd=current', '--location=hsplit')
|
|
tab.neighboring_window("bottom")
|
|
else:
|
|
if tab.current_layout.name == 'stack':
|
|
tab.last_used_layout()
|
|
tab.neighboring_window("bottom")
|
|
else:
|
|
tab.neighboring_window("top")
|
|
tab.goto_layout('stack')
|
|
|
|
|
|
@result_handler(no_ui=True)
|
|
def handle_result(args, result, target_window_id, boss):
|
|
window = boss.window_id_map.get(target_window_id)
|
|
|
|
if window is None:
|
|
return
|
|
|
|
toggle_term(boss)
|