Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/lib/keyBindings.js
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,12 @@ const APP_BINDING_CONFIG = [
readOnly: true,
editorOnly: true,
},
{
name: "welcomeTab",
description: "Find a file",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Correct the welcome command description

The welcomeTab command is displayed in the command palette as “Find a file,” even though it opens the welcome tab, making it easy to confuse with the actual file-finding command.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

key: "Ctrl-Shift-W",
action: "welcome",
},
];

const APP_KEY_BINDINGS = buildAppBindings(APP_BINDING_CONFIG);
Expand Down