We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 217f509 commit ec9593bCopy full SHA for ec9593b
lib/ui/palette.tsx
@@ -20,7 +20,7 @@ export const CommandPalette: m.Component = {
20
const cmds = Object.values(workbench.commands.commands);
21
const filtered = cmds.filter(cmd => {
22
const value = cmd.title || cmd.id;
23
- return value.toLowerCase().startsWith(state.filter.toLowerCase());
+ return value.toLowerCase().includes(state.filter.toLowerCase());
24
})
25
const onkeydown = (e) => {
26
const mod = (a, b) => ((a % b) + b) % b;
0 commit comments