feat: allow ctrl+d to exit the app (#3636)

This commit is contained in:
Nathan Thomas
2025-10-31 14:27:41 -07:00
committed by GitHub
parent 9e392f25a6
commit e630d680dd
4 changed files with 19 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ OpenCode has a list of keybinds that you can customize through the OpenCode conf
"keybinds": {
"leader": "ctrl+x",
"app_help": "<leader>h",
"app_exit": "ctrl+c,<leader>q",
"app_exit": "ctrl+c,ctrl+d,<leader>q",
"editor_open": "<leader>e",
"theme_list": "<leader>t",
"project_init": "<leader>i",
@@ -42,6 +42,7 @@ OpenCode has a list of keybinds that you can customize through the OpenCode conf
"agent_cycle": "tab",
"agent_cycle_reverse": "shift+tab",
"input_clear": "ctrl+c",
"input_forward_delete": "ctrl+d",
"input_paste": "ctrl+v",
"input_submit": "enter",
"input_newline": "shift+enter,ctrl+j"