Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
82bf717
feat(command-palette): add command palette
antonreshetov May 5, 2026
69e2939
fix(command-palette): polish result navigation
antonreshetov May 5, 2026
1e0c14c
feat(command-palette): add root actions and recent history
antonreshetov May 5, 2026
3e199a8
fix(command-palette): search content by name
antonreshetov May 5, 2026
a386b18
fix(command-palette): stabilize list height
antonreshetov May 5, 2026
a81ac5f
chore(docs): stop tracking superpowers plan
antonreshetov May 5, 2026
7e7ea99
feat(command-palette): rank results by usage
antonreshetov May 5, 2026
113e631
feat(command-palette): add command prefix actions
antonreshetov May 5, 2026
b49cc73
fix(command-palette): group actions by space order
antonreshetov May 5, 2026
8b9e381
feat(command-palette): add space scoped search
antonreshetov May 5, 2026
ad4fc32
fix(command-palette): show scoped home results
antonreshetov May 6, 2026
be65954
feat(command-palette): support space scope shortcuts
antonreshetov May 6, 2026
fe1f488
fix(command-palette): clarify input placeholders
antonreshetov May 6, 2026
1a257d8
fix(command-palette): clarify scoped placeholder
antonreshetov May 6, 2026
81926d2
fix(command-palette): align result icons
antonreshetov May 6, 2026
e18b32a
fix(command-palette): tune result icon offset
antonreshetov May 6, 2026
0e0c882
feat(command-palette): add create fallbacks
antonreshetov May 6, 2026
65a7230
fix(command-palette): stabilize pending search sections
antonreshetov May 6, 2026
736c4f2
fix(command-palette): keep scoped mode search focused
antonreshetov May 6, 2026
b26047b
feat(command-palette): add actions panel
antonreshetov May 6, 2026
53dfbc3
feat(command-palette): add footer hints
antonreshetov May 6, 2026
078bb86
fix(command-palette): restore keyboard scroll anchoring
antonreshetov May 6, 2026
2870e9e
fix(command-palette): restore scroll after action panel
antonreshetov May 6, 2026
fee1256
fix(command-palette): copy content from recent snippets
antonreshetov May 6, 2026
59e553f
feat(command-palette): reveal items in file manager
antonreshetov May 6, 2026
56d8ed0
feat(command-palette): add copy actions for items
antonreshetov May 6, 2026
07ef102
feat(command-palette): add duplicate item actions
antonreshetov May 6, 2026
a53e365
feat(command-palette): add item mutation actions
antonreshetov May 6, 2026
d59ac4a
feat(command-palette): clarify enter footer hint
antonreshetov May 6, 2026
ae93063
fix(command-palette): prevent focus restore on close
antonreshetov May 6, 2026
9d4d2a6
fix(command-palette): refresh lists after item actions
antonreshetov May 6, 2026
067bfea
fix(command-palette): show arrow hint for actions
antonreshetov May 6, 2026
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(command-palette): align result icons
  • Loading branch information
antonreshetov committed May 6, 2026
commit 81926d220ffcfd03ddbc0bc55decd5bf8eae5e24
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ const emit = defineEmits<{
role="option"
:aria-selected="active"
:data-command-palette-active="active ? 'true' : undefined"
class="[&_svg:not([class*='text-'])]:text-muted-foreground relative flex min-h-11 w-full cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-left text-sm outline-hidden select-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4"
class="[&_svg:not([class*='text-'])]:text-muted-foreground relative flex min-h-11 w-full cursor-default items-start gap-2 rounded-sm px-2 py-1.5 text-left text-sm outline-hidden select-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4"
:class="active ? 'bg-accent text-accent-foreground' : ''"
@click="emit('select', result)"
@pointerenter="emit('activate', result)"
>
<component
:is="result.icon"
class="h-4 w-4"
class="mt-0.5 h-4 w-4"
/>
<div class="min-w-0 flex-1">
<UiText
Expand Down