feat(renderer): keyboard shortcuts for file ops (open, save, close, next/prev tab)

This commit is contained in:
2026-06-05 15:32:55 +05:30
parent 3598d06240
commit 6da98c3a54
3 changed files with 245 additions and 0 deletions
@@ -8,8 +8,10 @@ import { PreviewPane } from '@/components/preview/PreviewPane';
import { Sidebar } from '@/components/sidebar/Sidebar';
import { useAppStore } from '@/stores/app-store';
import { ResizablePanelGroup, ResizablePanel, ResizableHandle } from '@/components/ui/resizable';
import { useFileShortcuts } from '@/hooks/use-file-shortcuts';
export function AppShell() {
useFileShortcuts();
const { sidebarVisible, previewVisible, paneSizes, setPaneSizes } = useAppStore();
return (