feat(ui): add keyboard shortcuts for AI profiles navigation

- Add M shortcut to navigate to AI Profiles from sidebar
- Add N shortcut to create new profile in profiles view
- Display keyboard shortcut indicators in UI

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
This commit is contained in:
Kacper
2025-12-10 15:03:02 +01:00
parent 02eeb1031e
commit d59fde5c95
4 changed files with 44 additions and 3 deletions

View File

@@ -106,6 +106,7 @@ export const NAV_SHORTCUTS: Record<string, string> = {
context: "C", // C for Context
tools: "T", // T for Tools
settings: "S", // S for Settings
profiles: "M", // M for Models/profiles
};
/**
@@ -127,4 +128,5 @@ export const ACTION_SHORTCUTS: Record<string, string> = {
projectPicker: "P", // P for Project picker
cyclePrevProject: "Q", // Q for previous project (cycle back through MRU)
cycleNextProject: "E", // E for next project (cycle forward through MRU)
addProfile: "N", // N for New profile (when in profiles view)
};