Fix: Atom keymap in ProjectPanel (#13655)

- Fix various keys [aAD] which did not function in Project Panel filename entry with Atom Keybind.
This commit is contained in:
Peter Tripp 2024-06-28 15:29:45 -04:00 committed by GitHub
parent 218629cdd4
commit b1a0188467
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,11 +70,8 @@
{
"context": "ProjectPanel",
"bindings": {
"a": "project_panel::NewFile",
"shift-a": "project_panel::NewDirectory",
"f2": "project_panel::Rename",
"backspace": ["project_panel::Trash", { "skip_prompt": false }],
"shift-d": "project_panel::Duplicate",
"cmd-x": "project_panel::Cut",
"cmd-c": "project_panel::Copy",
"cmd-v": "project_panel::Paste",
@ -85,5 +82,13 @@
"ctrl-f": "project_panel::ExpandSelectedEntry",
"ctrl-shift-c": "project_panel::CopyPath"
}
},
{
"context": "ProjectPanel && not_editing",
"bindings": {
"a": "project_panel::NewFile",
"shift-a": "project_panel::NewDirectory",
"shift-d": "project_panel::Duplicate"
}
}
]