Skip to content

tab rename still broken in 0.26.1 #5447

@sdemura

Description

@sdemura

Describe the bug
Tab rename has been broken since 0.26, including the most recent 0.26.1

To Reproduce
Steps to reproduce the behavior:

  1. Open kitty with the current config:
# BEGIN_KITTY_THEME
# Everforest Dark Medium
include current-theme.conf
# END_KITTY_THEME

# Set the value of kitty_mod modifier for all mappings
kitty_mod cmd

# Remove all default mappings.
clear_all_shortcuts yes

# Reload config
map kitty_mod+shift+r load_config_file

# Misc
copy_on_select yes
scrollback_lines 5000

# Fonts
font_family Fira Code Retina
font_size 13.0

# MacOS Options
macos_option_as_alt yes
macos_thicken_font 1.0
macos_titlebar_color background
macos_show_window_title_in none
macos_quit_when_last_window_closed yes

## Keymaps
# move words by alt left/right
map alt+left send_text all \x1b\x62
map alt+right send_text all \x1b\x66

# Change font sizes
map kitty_mod+equal change_font_size all +1.0
map kitty_mod+minus change_font_size all -1.0
map kitty_mod+0 change_font_size all 0

# Clipboard operations
map kitty_mod+c copy_to_clipboard
map kitty_mod+v paste_from_clipboard
map kitty_mod+s paste_from_selection

# easier tab navigation
map kitty_mod+1 goto_tab 1
map kitty_mod+2 goto_tab 2
map kitty_mod+3 goto_tab 3
map kitty_mod+4 goto_tab 4
map kitty_mod+5 goto_tab 5
map kitty_mod+6 goto_tab 6
map kitty_mod+7 goto_tab 7
map kitty_mod+8 goto_tab 8
map kitty_mod+9 goto_tab 999
map kitty_mod+left previous_tab
map kitty_mod+right next_tab


# Tabs
# map kitty_mod+t new_tab
map kitty_mod+t new_tab_with_cwd
map kitty_mod+w close_tab
map kitty_mod+p previous_tab
map kitty_mod+n next_tab
#map kitty_mod+z toggle_layout vertical
map kitty_mod+l next_layout
map kitty_mod+shift+i set_tab_title

# Windows
map ctrl+z next_window
map kitty_mod+enter new_window_with_cwd
map kitty_mod+[ prev_window
map kitty_mod+] next_window

## Resize windows
map kitty_mod+shift+left resize_window narrower 2
map kitty_mod+shift+right resize_window wider 2
map kitty_mod+shift+up resize_window taller 2
map kitty_mod+shift+down resize_window shorter 2

## Navigate windows
map kitty_mod+left neighboring_window left
map kitty_mod+right neighboring_window right
map kitty_mod+up neighboring_window up
map kitty_mod+down neighboring_window down

# Scrolling
map kitty_mod+/ show_scrollback
map kitty_mod+y scroll_line_up
map kitty_mod+e scroll_line_down
map kitty_mod+u scroll_page_up
map kitty_mod+d scroll_page_down
map kitty_mod+shift+g scroll_end
map kitty_mod+g scroll_home

# Tab Configuration
tab_bar_edge top
tab_bar_style powerline
tab_powerline_style slanted
  1. Rename a tab, and watch it not actually rename.

The solution to #5439 seems to imply the usage of tmux with kitty, which I do not do. Setting LANG in my .zshrc and launching kitty (without also launching tmux) does not resolve the issue.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions