[core_window]
keymap = [
{ keys = ["q"], command = "try_quit", description = "Quit the application"},
{ keys = ["ctrl+c"], command = "try_quit", description = "Quit the application"},
{ keys = ["alt+1"], command = "focus_chat_list", description = "Focus the chat list"},
{ keys = ["alt+left"], command = "focus_chat_list", description = "Focus the chat list"},
{ keys = ["alt+2"], command = "focus_chat", description = "Focus the chat"},
{ keys = ["alt+right"], command = "focus_chat", description = "Focus the chat"},
{ keys = ["alt+3"], command = "focus_prompt", description = "Focus the prompt"},
{ keys = ["alt+down"], command = "focus_prompt", description = "Focus the prompt"},
{ keys = ["esc"], command = "unfocus_component", description = "Unfocus the current component"},
{ keys = ["alt+up"], command = "unfocus_component", description = "Unfocus the current component"},
{ keys = ["alt+n"], command = "toggle_chat_list", description = "Toggle chat_list visibility"},
{ keys = ["alt+l"], command = "increase_chat_list_size", description = "Increase the chat list size"},
{ keys = ["alt+h"], command = "decrease_chat_list_size", description = "Decrease the chat list size"},
{ keys = ["alt+k"], command = "increase_prompt_size", description = "Increase the prompt size"},
{ keys = ["alt+j"], command = "decrease_prompt_size", description = "Decrease the prompt size"},
]
[chat_list]
keymap = [
{ keys = ["down"], command = "chat_list_next", description = "Select the next chat"},
{ keys = ["up"], command = "chat_list_previous", description = "Select the previous chat"},
{ keys = ["left"], command = "chat_list_unselect", description = "Unselect the current chat"},
{ keys = ["right"], command = "chat_list_open", description = "Open the selected chat"},
{ keys = ["enter"], command = "chat_list_open", description = "Open the selected chat"},
]
[chat]
keymap = [
{ keys = ["down"], command = "chat_window_next", description = "Select the next message"},
{ keys = ["up"], command = "chat_window_previous", description = "Select the previous message"},
{ keys = ["left"], command = "chat_window_unselect", description = "Unselect the current message"},
{ keys = ["d"], command = "chat_window_delete_for_everyone", description = "Delete the selected message for all users"},
{ keys = ["D"], command = "chat_window_delete_for_me", description = "Delete the selected message for 'me'"},
{ keys = ["y"], command = "chat_window_copy", description = "Copy the selected message"},
{ keys = ["ctrl+c"], command = "chat_window_copy", description = "Copy the selected message"},
{ keys = ["e"], command = "chat_window_edit", description = "Edit the selected message"},
{ keys = ["r"], command = "chat_window_reply", description = "Reply to the selected message"},
]
[prompt]