13 lines
602 B
Plaintext
13 lines
602 B
Plaintext
[manager]
|
|
prepend_keymap = [
|
|
{ on = "<C-c>", run = "quit", desc="Quit with cwd" },
|
|
|
|
{ on = "<C-S-Space>", run = "tab_create --current", desc = "Create a new tab with CWD" },
|
|
{ on = "<C-A-q>", run = "tab_switch -1 --relative", desc = "Switch to previous tab" },
|
|
{ on = "<C-A-e>", run = "tab_switch 1 --relative", desc = "Switch to next tab" },
|
|
{ on = "<C-A-`>", run = "close", desc = "Close the current tab, or quit if it's last" },
|
|
|
|
{ on = "<C-k>", run = "arrow -50%", desc = "Move cursor up half page" },
|
|
{ on = "<C-j>", run = "arrow 50%", desc = "Move cursor down half page" },
|
|
]
|