Forgot to commit last night

This commit is contained in:
Mikayla Maki 2022-06-22 11:23:09 -07:00
parent b36bf0c56d
commit 31bc758f35
3 changed files with 224 additions and 117 deletions

View file

@ -226,8 +226,7 @@
"cmd-p": "file_finder::Toggle",
"cmd-shift-P": "command_palette::Toggle",
"cmd-shift-M": "diagnostics::Deploy",
"cmd-alt-s": "workspace::SaveAll",
"shift-cmd-T": "terminal::Deploy"
"cmd-alt-s": "workspace::SaveAll"
}
},
// Bindings from Sublime Text
@ -353,5 +352,20 @@
"f2": "project_panel::Rename",
"backspace": "project_panel::Delete"
}
},
{
"context": "Terminal",
"bindings": {
"ctrl-c": "terminal::SIGINT",
"escape": "terminal::ESCAPE",
"ctrl-d": "terminal::Quit",
"backspace": "terminal::DEL",
"enter": "terminal::RETURN",
"left": "terminal::LEFT",
"right": "terminal::RIGHT",
"up": "terminal::HistoryBack",
"down": "terminal::HistoryForward",
"tab": "terminal::AutoComplete"
}
}
]