Skip to content

Commit 8f81788

Browse files
ryan-williamsclaude
andcommitted
Add LookupModal for browsing shortcuts by key sequence
Press ⌘⇧K to open and type keys to filter matching shortcuts. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent eeed0c2 commit 8f81788

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

www/src/App.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useUrlParam } from '@rdub/use-url-params'
22
import { QueryClientProvider } from '@tanstack/react-query'
33
import { useCallback, useEffect, useMemo, useState } from 'react'
4-
import { HotkeysProvider, Omnibar, SequenceModal, ShortcutsModal, useHotkeysContext } from 'use-kbd'
4+
import { HotkeysProvider, LookupModal, Omnibar, SequenceModal, ShortcutsModal, useHotkeysContext } from 'use-kbd'
55
import 'use-kbd/styles.css'
66
import { AwairChart } from './components/AwairChart'
77
import { DevicePoller, type DeviceDataResult } from './components/DevicePoller'
@@ -212,6 +212,7 @@ function AppContent() {
212212
hint="Click any key to customize"
213213
/>
214214
<Omnibar placeholder="Search actions..." maxResults={15} />
215+
<LookupModal />
215216
<SequenceModal />
216217
</>
217218
}

0 commit comments

Comments
 (0)