@catalystsoftware/ui 1.0.11 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +309 -0
- package/dist/components/catalyst-ui/background/animated-beam.tsx +189 -0
- package/dist/components/catalyst-ui/background/background-gradient.tsx +77 -0
- package/dist/components/catalyst-ui/background/background-paths.tsx +132 -0
- package/dist/components/catalyst-ui/background/canvas-fractal-grid.tsx +1862 -0
- package/dist/components/catalyst-ui/background/distorted-glass.tsx +0 -0
- package/dist/components/catalyst-ui/background/dot-pattern.tsx +169 -0
- package/dist/components/catalyst-ui/background/dotted-glow-background.tsx +342 -0
- package/dist/components/catalyst-ui/background/dotted-map.tsx +193 -0
- package/dist/components/catalyst-ui/background/dynamic-rain.tsx +216 -0
- package/dist/components/catalyst-ui/background/flickering-grid.tsx +211 -0
- package/dist/components/catalyst-ui/background/fractal-grid.tsx +666 -0
- package/dist/components/catalyst-ui/background/hexagon-background.tsx +102 -0
- package/dist/components/catalyst-ui/background/index.ts +25 -0
- package/dist/components/catalyst-ui/background/interactive-grid-pattern.tsx +90 -0
- package/dist/components/catalyst-ui/background/lamp.tsx +105 -0
- package/dist/components/catalyst-ui/background/orbiting-circles.tsx +76 -0
- package/dist/components/catalyst-ui/background/particles.tsx +286 -0
- package/dist/components/catalyst-ui/background/progressive-blur.tsx +113 -0
- package/dist/components/catalyst-ui/background/retro-grid-background.tsx +104 -0
- package/dist/components/catalyst-ui/background/smoke.tsx +117 -0
- package/dist/components/catalyst-ui/background/sparkles.tsx +435 -0
- package/dist/components/catalyst-ui/background/stripe-bg-guides.tsx +260 -0
- package/dist/components/catalyst-ui/background/texture-overlay.tsx +207 -0
- package/dist/components/catalyst-ui/background/vortex.tsx +257 -0
- package/dist/components/catalyst-ui/buttons/animated-theme-toggler.tsx +90 -0
- package/dist/components/catalyst-ui/buttons/attract-button.tsx +167 -0
- package/dist/components/catalyst-ui/buttons/bg-animate-button.tsx +249 -0
- package/dist/components/catalyst-ui/buttons/button-group.tsx +203 -0
- package/dist/components/catalyst-ui/buttons/command-button.tsx +109 -0
- package/dist/components/catalyst-ui/buttons/copy-button.tsx +117 -0
- package/dist/components/catalyst-ui/buttons/copy-text.tsx +347 -0
- package/dist/components/catalyst-ui/buttons/export-file.tsx +262 -0
- package/dist/components/catalyst-ui/buttons/flip-button.tsx +106 -0
- package/dist/components/catalyst-ui/buttons/float-button.tsx +197 -0
- package/dist/components/catalyst-ui/buttons/form-button.tsx +90 -0
- package/dist/components/catalyst-ui/buttons/hold-button.tsx +208 -0
- package/dist/components/catalyst-ui/buttons/index.ts +35 -0
- package/dist/components/catalyst-ui/buttons/input-button.tsx +192 -0
- package/dist/components/catalyst-ui/buttons/liquid-button.tsx +53 -0
- package/dist/components/catalyst-ui/buttons/particle-button.tsx +193 -0
- package/dist/components/catalyst-ui/buttons/rating-button-1.tsx +243 -0
- package/dist/components/catalyst-ui/buttons/rating-button.tsx +226 -0
- package/dist/components/catalyst-ui/buttons/ripple-button.tsx +146 -0
- package/dist/components/catalyst-ui/buttons/scroll-to-top.tsx +47 -0
- package/dist/components/catalyst-ui/buttons/shimmer-button.tsx +84 -0
- package/dist/components/catalyst-ui/buttons/slide-button.tsx +90 -0
- package/dist/components/catalyst-ui/buttons/social-button.tsx +194 -0
- package/dist/components/catalyst-ui/buttons/split-button.tsx +121 -0
- package/dist/components/catalyst-ui/buttons/switch-button.tsx +316 -0
- package/dist/components/catalyst-ui/buttons/text-reveal-button.tsx +65 -0
- package/dist/components/catalyst-ui/buttons/theme-switcher.tsx +102 -0
- package/dist/components/catalyst-ui/buttons/theme-toggle-button.tsx +312 -0
- package/dist/components/catalyst-ui/buttons/toggle-button.tsx +125 -0
- package/dist/components/catalyst-ui/buttons/tooltip-button.tsx +24 -0
- package/dist/components/catalyst-ui/charts/area-chart.tsx +989 -0
- package/dist/components/catalyst-ui/charts/bar-chart.tsx +887 -0
- package/dist/components/catalyst-ui/charts/bar-list.tsx +171 -0
- package/dist/components/catalyst-ui/charts/category-bar.tsx +221 -0
- package/dist/components/catalyst-ui/charts/chart-utils.ts +168 -0
- package/dist/components/catalyst-ui/charts/combo-chart.tsx +1179 -0
- package/dist/components/catalyst-ui/charts/donut-chart.tsx +337 -0
- package/dist/components/catalyst-ui/charts/index.ts +14 -0
- package/dist/components/catalyst-ui/charts/line-chart.tsx +907 -0
- package/dist/components/catalyst-ui/charts/spark-chart.tsx +328 -0
- package/dist/components/catalyst-ui/chat/chat.tsx +491 -0
- package/dist/components/catalyst-ui/code/code-block-section.tsx +939 -0
- package/dist/components/catalyst-ui/code/code-comparison.tsx +221 -0
- package/dist/components/catalyst-ui/code/code-comparison1.tsx +203 -0
- package/dist/components/catalyst-ui/code/code-editor.tsx +318 -0
- package/dist/components/catalyst-ui/code/code-section.tsx +62 -0
- package/dist/components/catalyst-ui/code/css-section.tsx +142 -0
- package/dist/components/catalyst-ui/code/html-section.tsx +102 -0
- package/dist/components/catalyst-ui/code/index.ts +22 -0
- package/dist/components/catalyst-ui/code/installCode-section.tsx +181 -0
- package/dist/components/catalyst-ui/code/installCodeArray-section.tsx +186 -0
- package/dist/components/catalyst-ui/code/installGithub-section.tsx +119 -0
- package/dist/components/catalyst-ui/code/json-section.tsx +253 -0
- package/dist/components/catalyst-ui/code/props-section.tsx +605 -0
- package/dist/components/catalyst-ui/code/sandbox.tsx +398 -0
- package/dist/components/catalyst-ui/code/sandbox2.tsx +3194 -0
- package/dist/components/catalyst-ui/code/terminal-1.tsx +119 -0
- package/dist/components/catalyst-ui/code/terminal-code-section.tsx +395 -0
- package/dist/components/catalyst-ui/code/terminal.tsx +315 -0
- package/dist/components/catalyst-ui/code/tsx-section.tsx +176 -0
- package/dist/components/catalyst-ui/comboboxes/choicebox.tsx +203 -0
- package/dist/components/catalyst-ui/comboboxes/combobox-0.tsx +556 -0
- package/dist/components/catalyst-ui/comboboxes/combobox-1.tsx +146 -0
- package/dist/components/catalyst-ui/comboboxes/combobox2.tsx +255 -0
- package/dist/components/catalyst-ui/comboboxes/emoji-picker.tsx +486 -0
- package/dist/components/catalyst-ui/comboboxes/filter-combobox.tsx +46 -0
- package/dist/components/catalyst-ui/comboboxes/index.ts +9 -0
- package/dist/components/catalyst-ui/comboboxes/multi-combobox.tsx +169 -0
- package/dist/components/catalyst-ui/comboboxes/nested-combobox.tsx +211 -0
- package/dist/components/catalyst-ui/commands/command-2.tsx +126 -0
- package/dist/components/catalyst-ui/commands/command-w-combobox.tsx +108 -0
- package/dist/components/catalyst-ui/commands/index.ts +6 -0
- package/dist/components/catalyst-ui/commands/nested-command-dialog.tsx +429 -0
- package/dist/components/catalyst-ui/commands/nested-command.tsx +133 -0
- package/dist/components/catalyst-ui/core/components/3d-card.tsx +144 -0
- package/dist/components/catalyst-ui/core/components/3d-card1.tsx +196 -0
- package/dist/components/catalyst-ui/core/components/android.tsx +105 -0
- package/dist/components/catalyst-ui/core/components/apple-cards-carousel.tsx +376 -0
- package/dist/components/catalyst-ui/core/components/apple-dock.tsx +280 -0
- package/dist/components/catalyst-ui/core/components/badge-1.tsx +117 -0
- package/dist/components/catalyst-ui/core/components/card-flip.tsx +204 -0
- package/dist/components/catalyst-ui/core/components/card-stack.tsx +224 -0
- package/dist/components/catalyst-ui/core/components/chat-bubble.tsx +198 -0
- package/dist/components/catalyst-ui/core/components/collapsible-section.tsx +92 -0
- package/dist/components/catalyst-ui/core/components/comment.tsx +812 -0
- package/dist/components/catalyst-ui/core/components/counter.tsx +77 -0
- package/dist/components/catalyst-ui/core/components/credit-card.tsx +406 -0
- package/dist/components/catalyst-ui/core/components/device-mockup.tsx +436 -0
- package/dist/components/catalyst-ui/core/components/embed.tsx +0 -0
- package/dist/components/catalyst-ui/core/components/faq.tsx +166 -0
- package/dist/components/catalyst-ui/core/components/feed.tsx +741 -0
- package/dist/components/catalyst-ui/core/components/fixed-marker.tsx +232 -0
- package/dist/components/catalyst-ui/core/components/for.tsx +138 -0
- package/dist/components/catalyst-ui/core/components/glowing-effect-card.tsx +273 -0
- package/dist/components/catalyst-ui/core/components/iframe.tsx +175 -0
- package/dist/components/catalyst-ui/core/components/in-place.tsx +285 -0
- package/dist/components/catalyst-ui/core/components/iphone-15-pro.tsx +129 -0
- package/dist/components/catalyst-ui/core/components/macbook-scroll.tsx +702 -0
- package/dist/components/catalyst-ui/core/components/magic-card.tsx +102 -0
- package/dist/components/catalyst-ui/core/components/message-dock.tsx +61 -0
- package/dist/components/catalyst-ui/core/components/meter.tsx +123 -0
- package/dist/components/catalyst-ui/core/components/number-ticker.tsx +67 -0
- package/dist/components/catalyst-ui/core/components/panel.tsx +286 -0
- package/dist/components/catalyst-ui/core/components/pill-1.tsx +166 -0
- package/dist/components/catalyst-ui/core/components/qrcode.tsx +1153 -0
- package/dist/components/catalyst-ui/core/components/safari-device.tsx +197 -0
- package/dist/components/catalyst-ui/core/components/sliding-number.tsx +235 -0
- package/dist/components/catalyst-ui/core/components/spoiler.tsx +161 -0
- package/dist/components/catalyst-ui/core/components/stat.tsx +572 -0
- package/dist/components/catalyst-ui/core/components/sticky.tsx +214 -0
- package/dist/components/catalyst-ui/core/components/tag.tsx +551 -0
- package/dist/components/catalyst-ui/core/components/tweet-card-1.tsx +164 -0
- package/dist/components/catalyst-ui/core/components/tweet-card.tsx +229 -0
- package/dist/components/catalyst-ui/core/data-display/barcode.tsx +1007 -0
- package/dist/components/catalyst-ui/core/data-display/data-list.tsx +344 -0
- package/dist/components/catalyst-ui/core/data-display/descriptionLists.tsx +205 -0
- package/dist/components/catalyst-ui/core/data-display/diff.tsx +186 -0
- package/dist/components/catalyst-ui/core/data-display/heat-map-calendar.tsx +361 -0
- package/dist/components/catalyst-ui/core/data-display/order-list.tsx +0 -0
- package/dist/components/catalyst-ui/core/data-display/stats-1.tsx +129 -0
- package/dist/components/catalyst-ui/core/data-display/stats.tsx +139 -0
- package/dist/components/catalyst-ui/core/data-display/ticker.tsx +179 -0
- package/dist/components/catalyst-ui/core/data-display/timeline-1.tsx +452 -0
- package/dist/components/catalyst-ui/core/data-display/timeline2.tsx +240 -0
- package/dist/components/catalyst-ui/core/data-display/tracker.tsx +209 -0
- package/dist/components/catalyst-ui/core/data-display/transfer-list.tsx +278 -0
- package/dist/components/catalyst-ui/core/data-display/tremor-tracker.tsx +103 -0
- package/dist/components/catalyst-ui/core/demos/FAQ-demo.tsx +41 -0
- package/dist/components/catalyst-ui/core/demos/action-panels-demo.tsx +64 -0
- package/dist/components/catalyst-ui/core/demos/banner-demo.tsx +100 -0
- package/dist/components/catalyst-ui/core/demos/bentoGrid-demo.tsx +191 -0
- package/dist/components/catalyst-ui/core/demos/blog-demo.tsx +68 -0
- package/dist/components/catalyst-ui/core/demos/blogEditor-demo.tsx +10 -0
- package/dist/components/catalyst-ui/core/demos/blogPost-demo.tsx +41 -0
- package/dist/components/catalyst-ui/core/demos/button-groups-demo.tsx +111 -0
- package/dist/components/catalyst-ui/core/demos/cardHeadings-demo.tsx +65 -0
- package/dist/components/catalyst-ui/core/demos/catch-all.tsx +414 -0
- package/dist/components/catalyst-ui/core/demos/contact-demo.tsx +87 -0
- package/dist/components/catalyst-ui/core/demos/content-demo.tsx +52 -0
- package/dist/components/catalyst-ui/core/demos/cta-demo.tsx +64 -0
- package/dist/components/catalyst-ui/core/demos/descriptionLists-demo.tsx +109 -0
- package/dist/components/catalyst-ui/core/demos/edit-product-page-demo.tsx +11 -0
- package/dist/components/catalyst-ui/core/demos/empty-state-demo.tsx +37 -0
- package/dist/components/catalyst-ui/core/demos/feature-demo.tsx +104 -0
- package/dist/components/catalyst-ui/core/demos/feeds-demo.tsx +26 -0
- package/dist/components/catalyst-ui/core/demos/flyoutMenu-demo.tsx +156 -0
- package/dist/components/catalyst-ui/core/demos/footer-demo.tsx +62 -0
- package/dist/components/catalyst-ui/core/demos/form-layouts-demo.tsx +378 -0
- package/dist/components/catalyst-ui/core/demos/gridLists-demo.tsx +47 -0
- package/dist/components/catalyst-ui/core/demos/header-demo.tsx +0 -0
- package/dist/components/catalyst-ui/core/demos/header2-demo.tsx +77 -0
- package/dist/components/catalyst-ui/core/demos/headers-demo.tsx +659 -0
- package/dist/components/catalyst-ui/core/demos/hero-demo.tsx +75 -0
- package/dist/components/catalyst-ui/core/demos/input-groups-demo.tsx +75 -0
- package/dist/components/catalyst-ui/core/demos/landingPage-demo.tsx +222 -0
- package/dist/components/catalyst-ui/core/demos/list-demo.tsx +442 -0
- package/dist/components/catalyst-ui/core/demos/logoClouds-demo.tsx +36 -0
- package/dist/components/catalyst-ui/core/demos/mediaObject-demo.tsx +219 -0
- package/dist/components/catalyst-ui/core/demos/multiColumnLayouts-demo.tsx +42 -0
- package/dist/components/catalyst-ui/core/demos/newsLetter-demo.tsx +51 -0
- package/dist/components/catalyst-ui/core/demos/pageHeading-demo.tsx +55 -0
- package/dist/components/catalyst-ui/core/demos/pricing-demo.tsx +114 -0
- package/dist/components/catalyst-ui/core/demos/radio-group-demo.tsx +315 -0
- package/dist/components/catalyst-ui/core/demos/settingsScreen-demo.tsx +95 -0
- package/dist/components/catalyst-ui/core/demos/sidebar-demo.tsx +40 -0
- package/dist/components/catalyst-ui/core/demos/stackedLayout-demo.tsx +17 -0
- package/dist/components/catalyst-ui/core/demos/stackedLists-demo.tsx +60 -0
- package/dist/components/catalyst-ui/core/demos/stats-demo.tsx +99 -0
- package/dist/components/catalyst-ui/core/demos/team-demo.tsx +35 -0
- package/dist/components/catalyst-ui/core/demos/testimonial-demo.tsx +33 -0
- package/dist/components/catalyst-ui/core/demos/toggle-demo-demo.tsx +414 -0
- package/dist/components/catalyst-ui/core/feedback/alert-variant.tsx +101 -0
- package/dist/components/catalyst-ui/core/feedback/announcement.tsx +53 -0
- package/dist/components/catalyst-ui/core/feedback/banner-2.tsx +143 -0
- package/dist/components/catalyst-ui/core/feedback/banner.tsx +50 -0
- package/dist/components/catalyst-ui/core/feedback/banner1.tsx +64 -0
- package/dist/components/catalyst-ui/core/feedback/callout.tsx +18 -0
- package/dist/components/catalyst-ui/core/feedback/chat-bubble.tsx +770 -0
- package/dist/components/catalyst-ui/core/feedback/dimmer.tsx +518 -0
- package/dist/components/catalyst-ui/core/feedback/dot-loader.tsx +116 -0
- package/dist/components/catalyst-ui/core/feedback/empty-states.tsx +154 -0
- package/dist/components/catalyst-ui/core/feedback/hero-badge.tsx +90 -0
- package/dist/components/catalyst-ui/core/feedback/indicator.tsx +315 -0
- package/dist/components/catalyst-ui/core/feedback/loading.tsx +11 -0
- package/dist/components/catalyst-ui/core/feedback/spinner-2.tsx +10 -0
- package/dist/components/catalyst-ui/core/feedback/spinner-3.tsx +163 -0
- package/dist/components/catalyst-ui/core/feedback/spinner-4.tsx +276 -0
- package/dist/components/catalyst-ui/core/feedback/spinner.tsx +287 -0
- package/dist/components/catalyst-ui/core/feedback/status.tsx +54 -0
- package/dist/components/catalyst-ui/core/headings/cardHeadings.tsx +215 -0
- package/dist/components/catalyst-ui/core/headings/pageHeading.tsx +300 -0
- package/dist/components/catalyst-ui/core/headings/sectionHeadings.tsx +240 -0
- package/dist/components/catalyst-ui/core/heros/animated-hero.tsx +116 -0
- package/dist/components/catalyst-ui/core/heros/animated-hero1.tsx +108 -0
- package/dist/components/catalyst-ui/core/heros/hero-video-dialog.tsx +150 -0
- package/dist/components/catalyst-ui/core/index.ts +248 -0
- package/dist/components/catalyst-ui/core/layout/absolute-center.tsx +45 -0
- package/dist/components/catalyst-ui/core/layout/bento-grid.tsx +251 -0
- package/dist/components/catalyst-ui/core/layout/bento-grid1.tsx +58 -0
- package/dist/components/catalyst-ui/core/layout/bento-grid2.tsx +107 -0
- package/dist/components/catalyst-ui/core/layout/bento-system.tsx +101 -0
- package/dist/components/catalyst-ui/core/layout/box.tsx +231 -0
- package/dist/components/catalyst-ui/core/layout/card-layout.tsx +312 -0
- package/dist/components/catalyst-ui/core/layout/center.tsx +76 -0
- package/dist/components/catalyst-ui/core/layout/container-demo.tsx +340 -0
- package/dist/components/catalyst-ui/core/layout/container.tsx +280 -0
- package/dist/components/catalyst-ui/core/layout/flexbox-grid.tsx +469 -0
- package/dist/components/catalyst-ui/core/layout/grid.tsx +656 -0
- package/dist/components/catalyst-ui/core/layout/group.tsx +49 -0
- package/dist/components/catalyst-ui/core/layout/list.tsx +665 -0
- package/dist/components/catalyst-ui/core/layout/mediaObject.tsx +254 -0
- package/dist/components/catalyst-ui/core/layout/rail.tsx +175 -0
- package/dist/components/catalyst-ui/core/layout/section.tsx +86 -0
- package/dist/components/catalyst-ui/core/layout/stack.tsx +182 -0
- package/dist/components/catalyst-ui/core/lists/animated-list.tsx +98 -0
- package/dist/components/catalyst-ui/core/lists/feeds.tsx +190 -0
- package/dist/components/catalyst-ui/core/lists/file-tree.tsx +379 -0
- package/dist/components/catalyst-ui/core/lists/gridLists.tsx +212 -0
- package/dist/components/catalyst-ui/core/lists/index.ts +14 -0
- package/dist/components/catalyst-ui/core/lists/list-1.tsx +152 -0
- package/dist/components/catalyst-ui/core/lists/list.tsx +217 -0
- package/dist/components/catalyst-ui/core/lists/list1.tsx +138 -0
- package/dist/components/catalyst-ui/core/lists/pin-list.tsx +191 -0
- package/dist/components/catalyst-ui/core/lists/stackedLists.tsx +149 -0
- package/dist/components/catalyst-ui/core/lists/tables.tsx +615 -0
- package/dist/components/catalyst-ui/core/lists/tree.tsx +194 -0
- package/dist/components/catalyst-ui/core/modules/createEditSchedule.tsx +389 -0
- package/dist/components/catalyst-ui/core/modules/punchClock.tsx +304 -0
- package/dist/components/catalyst-ui/core/modules/schedule.tsx +188 -0
- package/dist/components/catalyst-ui/core/modules/viewPunchClockEntries.tsx +629 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-01.tsx +264 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-02.tsx +498 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-03.tsx +263 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-04.tsx +331 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-05.tsx +400 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-06.tsx +436 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-07.tsx +331 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-08.tsx +418 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-09.tsx +440 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-10.tsx +351 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-11.tsx +444 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-12/NotificationMenu.tsx +120 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-12/TeamSwitcher.tsx +87 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-12/UserMenu.tsx +80 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-12/navbar-12.tsx +230 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-13/UserMenu.tsx +80 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-13/navbar-13.tsx +144 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-14/InfoMenu.tsx +62 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-14/NotificationMenu.tsx +122 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-14/SettingsMenu.tsx +66 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-14/navbar-14.tsx +156 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-15/DatePicker.tsx +66 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-15/Filters.tsx +160 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-15/navbar-15.tsx +151 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-16/AppToggle.tsx +125 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-16/TeamSwitcher.tsx +87 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-16/navbar-16.tsx +113 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-17.tsx +209 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-18.tsx +243 -0
- package/dist/components/catalyst-ui/core/navbars/navbar-19.tsx +333 -0
- package/dist/components/catalyst-ui/core/navigation/affix.tsx +123 -0
- package/dist/components/catalyst-ui/core/navigation/anchor.tsx +41 -0
- package/dist/components/catalyst-ui/core/navigation/dock-1.tsx +0 -0
- package/dist/components/catalyst-ui/core/navigation/dock-2.tsx +289 -0
- package/dist/components/catalyst-ui/core/navigation/dock.tsx +376 -0
- package/dist/components/catalyst-ui/core/navigation/efab.tsx +245 -0
- package/dist/components/catalyst-ui/core/navigation/fab-menu-component.tsx +299 -0
- package/dist/components/catalyst-ui/core/navigation/fab-menu.tsx +220 -0
- package/dist/components/catalyst-ui/core/navigation/fab.tsx +236 -0
- package/dist/components/catalyst-ui/core/navigation/index.ts +32 -0
- package/dist/components/catalyst-ui/core/navigation/limelight-nav.tsx +110 -0
- package/dist/components/catalyst-ui/core/navigation/mega-menu.tsx +354 -0
- package/dist/components/catalyst-ui/core/navigation/menu-dock.tsx +204 -0
- package/dist/components/catalyst-ui/core/navigation/message-dock.tsx +511 -0
- package/dist/components/catalyst-ui/core/navigation/page-nav.tsx +29 -0
- package/dist/components/catalyst-ui/core/navigation/page-sidebar-nav.tsx +39 -0
- package/dist/components/catalyst-ui/core/navigation/pagination-button.tsx +56 -0
- package/dist/components/catalyst-ui/core/navigation/pagination-wrapper.tsx +152 -0
- package/dist/components/catalyst-ui/core/navigation/panel-menu.tsx +201 -0
- package/dist/components/catalyst-ui/core/navigation/remix-link.tsx +40 -0
- package/dist/components/catalyst-ui/core/navigation/smooth-tab.tsx +412 -0
- package/dist/components/catalyst-ui/core/navigation/speed-dial.tsx +175 -0
- package/dist/components/catalyst-ui/core/navigation/stepper.tsx +290 -0
- package/dist/components/catalyst-ui/core/navigation/steps.tsx +578 -0
- package/dist/components/catalyst-ui/core/navigation/tab-menu.tsx +227 -0
- package/dist/components/catalyst-ui/core/navigation/tab-view.tsx +742 -0
- package/dist/components/catalyst-ui/core/navigation/toolbar-1.tsx +412 -0
- package/dist/components/catalyst-ui/core/navigation/toolbar.tsx +245 -0
- package/dist/components/catalyst-ui/core/sections/changelog-section.tsx +135 -0
- package/dist/components/catalyst-ui/core/sections/config-section.tsx +82 -0
- package/dist/components/catalyst-ui/core/sections/contact.tsx +600 -0
- package/dist/components/catalyst-ui/core/sections/content.tsx +386 -0
- package/dist/components/catalyst-ui/core/sections/layout.tsx +310 -0
- package/dist/components/catalyst-ui/core/sections/note-section.tsx +85 -0
- package/dist/components/catalyst-ui/core/sections/placeholder-code-section.tsx +14 -0
- package/dist/components/catalyst-ui/core/sections/step-number-section.tsx +16 -0
- package/dist/components/catalyst-ui/core/sections/team.tsx +372 -0
- package/dist/components/catalyst-ui/core/sections/useage-no-dash-section.tsx +79 -0
- package/dist/components/catalyst-ui/core/sections/useage-section.tsx +79 -0
- package/dist/components/catalyst-ui/core/shell/app-shell.tsx +321 -0
- package/dist/components/catalyst-ui/core/shell/content-shell.tsx +70 -0
- package/dist/components/catalyst-ui/core/shell/documentation/example.tsx +106 -0
- package/dist/components/catalyst-ui/core/shell/documentation/layout.config.tsx +200 -0
- package/dist/components/catalyst-ui/core/shell/documentation/layout.example.tsx +127 -0
- package/dist/components/catalyst-ui/core/shell/documentation/layout.tsx +280 -0
- package/dist/components/catalyst-ui/core/shell/multiColumnLayouts.tsx +364 -0
- package/dist/components/catalyst-ui/core/shell/sidebarLayout.tsx +459 -0
- package/dist/components/catalyst-ui/core/shell/stackedLayout.tsx +323 -0
- package/dist/components/catalyst-ui/core/shell/three-col/app.tsx +193 -0
- package/dist/components/catalyst-ui/core/shell/three-col/content.tsx +358 -0
- package/dist/components/catalyst-ui/core/shell/three-col/header.tsx +222 -0
- package/dist/components/catalyst-ui/core/shell/three-col/layout.tsx +120 -0
- package/dist/components/catalyst-ui/core/shell/three-col/side-navbar.tsx +305 -0
- package/dist/components/catalyst-ui/core/shell/three-col/sidebar.tsx +41 -0
- package/dist/components/catalyst-ui/crm/comp-297.tsx +24 -0
- package/dist/components/catalyst-ui/crm/comp-298.tsx +188 -0
- package/dist/components/catalyst-ui/crm/comp-299.tsx +24 -0
- package/dist/components/catalyst-ui/crm/comp-300.tsx +62 -0
- package/dist/components/catalyst-ui/crm/index.ts +5 -0
- package/dist/components/catalyst-ui/crm/tools/scripts-editor.tsx +3109 -0
- package/dist/components/catalyst-ui/crm/tools/scripts-viewer.tsx +215 -0
- package/dist/components/catalyst-ui/data/bg-data.tsx +901 -0
- package/dist/components/catalyst-ui/data/buttons-data.tsx +2327 -0
- package/dist/components/catalyst-ui/data/charts-data.tsx +102 -0
- package/dist/components/catalyst-ui/data/chat-data.tsx +83 -0
- package/dist/components/catalyst-ui/data/code-data.tsx +1040 -0
- package/dist/components/catalyst-ui/data/comboboxes-data.tsx +1843 -0
- package/dist/components/catalyst-ui/data/command-data.tsx +1381 -0
- package/dist/components/catalyst-ui/data/core-data.tsx +15953 -0
- package/dist/components/catalyst-ui/data/crm-data.tsx +47 -0
- package/dist/components/catalyst-ui/data/data.tsx +159 -0
- package/dist/components/catalyst-ui/data/date-and-time-data.tsx +554 -0
- package/dist/components/catalyst-ui/data/dependencies.tsx +7 -0
- package/dist/components/catalyst-ui/data/ecommerce-data.tsx +1387 -0
- package/dist/components/catalyst-ui/data/forms-data.tsx +7890 -0
- package/dist/components/catalyst-ui/data/hooks-data.tsx +5487 -0
- package/dist/components/catalyst-ui/data/index.ts +34 -0
- package/dist/components/catalyst-ui/data/inputs-data.tsx +557 -0
- package/dist/components/catalyst-ui/data/interactive-data.tsx +5394 -0
- package/dist/components/catalyst-ui/data/lofi-data.tsx +18295 -0
- package/dist/components/catalyst-ui/data/marketing-data.tsx +2546 -0
- package/dist/components/catalyst-ui/data/media-data.tsx +1510 -0
- package/dist/components/catalyst-ui/data/motion-data.tsx +5801 -0
- package/dist/components/catalyst-ui/data/overlay-data.tsx +4136 -0
- package/dist/components/catalyst-ui/data/pdf-data.tsx +124 -0
- package/dist/components/catalyst-ui/data/pos-data.tsx +213 -0
- package/dist/components/catalyst-ui/data/primitive-data.tsx +5170 -0
- package/dist/components/catalyst-ui/data/prompt-data.tsx +1226 -0
- package/dist/components/catalyst-ui/data/requiredLibs.ts +4 -0
- package/dist/components/catalyst-ui/data/sandbox-data.tsx +1 -0
- package/dist/components/catalyst-ui/data/sidebars-data.tsx +5421 -0
- package/dist/components/catalyst-ui/data/stacks-data.tsx +32 -0
- package/dist/components/catalyst-ui/data/table-data.tsx +706 -0
- package/dist/components/catalyst-ui/data/tools-data.tsx +6910 -0
- package/dist/components/catalyst-ui/data/typography-data.tsx +2050 -0
- package/dist/components/catalyst-ui/data/utils-data.tsx +6500 -0
- package/dist/components/catalyst-ui/data/x-data.tsx +1171 -0
- package/dist/components/catalyst-ui/data2.tsx +158 -0
- package/dist/components/catalyst-ui/date-and-time/appointment-scheduler.tsx +381 -0
- package/dist/components/catalyst-ui/date-and-time/calendar-2.tsx +498 -0
- package/dist/components/catalyst-ui/date-and-time/calendar-for-sidebar.tsx +68 -0
- package/dist/components/catalyst-ui/date-and-time/calendar-rac.tsx +112 -0
- package/dist/components/catalyst-ui/date-and-time/date-picker-input.tsx +76 -0
- package/dist/components/catalyst-ui/date-and-time/date-picker.tsx +64 -0
- package/dist/components/catalyst-ui/date-and-time/date-range-picker-input.tsx +84 -0
- package/dist/components/catalyst-ui/date-and-time/date-range-picker.tsx +125 -0
- package/dist/components/catalyst-ui/date-and-time/datefield-rac.tsx +88 -0
- package/dist/components/catalyst-ui/date-and-time/docked-date-picker.tsx +267 -0
- package/dist/components/catalyst-ui/date-and-time/drawerDatePicker.tsx +50 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/agenda-view.tsx +90 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/calendar-dnd-context.tsx +373 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/constants.ts +18 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/day-view.tsx +322 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/demo.tsx +162 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/draggable-event.tsx +141 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/droppable-cell.tsx +57 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/event-calendar.tsx +400 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/event-dialog.tsx +467 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/event-item.tsx +262 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/events-popup.tsx +135 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/hooks/use-current-time-indicator.ts +57 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/hooks/use-event-visibility.ts +86 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/index.ts +23 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/month-view.tsx +276 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/types.ts +20 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/utils.ts +153 -0
- package/dist/components/catalyst-ui/date-and-time/event-calendar/week-view.tsx +406 -0
- package/dist/components/catalyst-ui/date-and-time/index.ts +74 -0
- package/dist/components/catalyst-ui/date-and-time/mini-calendar.tsx +230 -0
- package/dist/components/catalyst-ui/date-and-time/modal-date-input.tsx +229 -0
- package/dist/components/catalyst-ui/date-and-time/popover-date-input.tsx +233 -0
- package/dist/components/catalyst-ui/date-and-time/relative-time.tsx +181 -0
- package/dist/components/catalyst-ui/date-and-time/time-picker-dial.tsx +368 -0
- package/dist/components/catalyst-ui/date-and-time/time-picker-input.tsx +385 -0
- package/dist/components/catalyst-ui/date-and-time/time-picker.tsx +514 -0
- package/dist/components/catalyst-ui/demo/examples.tsx +10069 -0
- package/dist/components/catalyst-ui/demo/examples2.tsx +10954 -0
- package/dist/components/catalyst-ui/demo/index.ts +5 -0
- package/dist/components/catalyst-ui/ecommerce/components/categoryFilters.tsx +302 -0
- package/dist/components/catalyst-ui/ecommerce/components/categoryPreviews.tsx +464 -0
- package/dist/components/catalyst-ui/ecommerce/components/checkoutForms.tsx +991 -0
- package/dist/components/catalyst-ui/ecommerce/components/incentives.tsx +529 -0
- package/dist/components/catalyst-ui/ecommerce/components/orderHistory.tsx +380 -0
- package/dist/components/catalyst-ui/ecommerce/components/orderSummaries.tsx +482 -0
- package/dist/components/catalyst-ui/ecommerce/components/productCard.tsx +84 -0
- package/dist/components/catalyst-ui/ecommerce/components/productCard2.tsx +82 -0
- package/dist/components/catalyst-ui/ecommerce/components/productFeatures.tsx +764 -0
- package/dist/components/catalyst-ui/ecommerce/components/productLists.tsx +472 -0
- package/dist/components/catalyst-ui/ecommerce/components/productOverview.tsx +856 -0
- package/dist/components/catalyst-ui/ecommerce/components/productQuickViews.tsx +378 -0
- package/dist/components/catalyst-ui/ecommerce/components/promoSectionts.tsx +414 -0
- package/dist/components/catalyst-ui/ecommerce/components/reviews.tsx +274 -0
- package/dist/components/catalyst-ui/ecommerce/components/shoppingCarts.tsx +508 -0
- package/dist/components/catalyst-ui/ecommerce/components/storeNavigation.tsx +255 -0
- package/dist/components/catalyst-ui/ecommerce/demo/categoryFilters-demo.tsx +140 -0
- package/dist/components/catalyst-ui/ecommerce/demo/categoryPreviews-demo.tsx +252 -0
- package/dist/components/catalyst-ui/ecommerce/demo/checkoutForms-demo.tsx +76 -0
- package/dist/components/catalyst-ui/ecommerce/demo/editProductPage-data2.tsx +34 -0
- package/dist/components/catalyst-ui/ecommerce/demo/editProductPage-demo.tsx +10 -0
- package/dist/components/catalyst-ui/ecommerce/demo/incentives-demo.tsx +172 -0
- package/dist/components/catalyst-ui/ecommerce/demo/orderHistory-demo.tsx +81 -0
- package/dist/components/catalyst-ui/ecommerce/demo/orderSummaries-demo.tsx +98 -0
- package/dist/components/catalyst-ui/ecommerce/demo/pricingPage-demo.tsx +105 -0
- package/dist/components/catalyst-ui/ecommerce/demo/product.$id-demo.tsx +98 -0
- package/dist/components/catalyst-ui/ecommerce/demo/productCard-demo.tsx +308 -0
- package/dist/components/catalyst-ui/ecommerce/demo/productFeatures-demo.tsx +57 -0
- package/dist/components/catalyst-ui/ecommerce/demo/productLists-demo.tsx +130 -0
- package/dist/components/catalyst-ui/ecommerce/demo/productOverview-demo.tsx +328 -0
- package/dist/components/catalyst-ui/ecommerce/demo/productQuickViews-demo.tsx +242 -0
- package/dist/components/catalyst-ui/ecommerce/demo/promoSectionts-demo.tsx +169 -0
- package/dist/components/catalyst-ui/ecommerce/demo/reviews-demo.tsx +45 -0
- package/dist/components/catalyst-ui/ecommerce/demo/shoppingCarts-demo.tsx +73 -0
- package/dist/components/catalyst-ui/ecommerce/demo/store-demo.tsx +88 -0
- package/dist/components/catalyst-ui/ecommerce/demo/storeNavigation-demo.tsx +171 -0
- package/dist/components/catalyst-ui/ecommerce/index.ts +55 -0
- package/dist/components/catalyst-ui/ecommerce/modules/cash-drawer-wizard.tsx +1400 -0
- package/dist/components/catalyst-ui/ecommerce/modules/cash-till-manager.tsx +639 -0
- package/dist/components/catalyst-ui/ecommerce/modules/promotionEngine.ts +341 -0
- package/dist/components/catalyst-ui/ecommerce/modules/promotionsManager.tsx +840 -0
- package/dist/components/catalyst-ui/forms/action-bar-1.tsx +192 -0
- package/dist/components/catalyst-ui/forms/action-bar.tsx +154 -0
- package/dist/components/catalyst-ui/forms/action-panels.tsx +153 -0
- package/dist/components/catalyst-ui/forms/action-search-bar.tsx +268 -0
- package/dist/components/catalyst-ui/forms/auto-resizing-textarea.tsx +36 -0
- package/dist/components/catalyst-ui/forms/cascade-tree.tsx +224 -0
- package/dist/components/catalyst-ui/forms/cascader.tsx +219 -0
- package/dist/components/catalyst-ui/forms/check-tree-picker.tsx +330 -0
- package/dist/components/catalyst-ui/forms/check-tree.tsx +348 -0
- package/dist/components/catalyst-ui/forms/checkbox-1.tsx +48 -0
- package/dist/components/catalyst-ui/forms/checkbox-card-1.tsx +64 -0
- package/dist/components/catalyst-ui/forms/checkbox-card.tsx +145 -0
- package/dist/components/catalyst-ui/forms/checkbox-multistate.tsx +97 -0
- package/dist/components/catalyst-ui/forms/checkbox-tristate.tsx +158 -0
- package/dist/components/catalyst-ui/forms/color-picker-1.tsx +299 -0
- package/dist/components/catalyst-ui/forms/color-picker-3.tsx +487 -0
- package/dist/components/catalyst-ui/forms/color-picker.tsx +251 -0
- package/dist/components/catalyst-ui/forms/credit-card-input.tsx +284 -0
- package/dist/components/catalyst-ui/forms/debounced-input.tsx +21 -0
- package/dist/components/catalyst-ui/forms/fancy-area.tsx +571 -0
- package/dist/components/catalyst-ui/forms/fieldset.tsx +107 -0
- package/dist/components/catalyst-ui/forms/float-label.tsx +66 -0
- package/dist/components/catalyst-ui/forms/floating-label.tsx +138 -0
- package/dist/components/catalyst-ui/forms/form-wizard.tsx +787 -0
- package/dist/components/catalyst-ui/forms/fuse-search-input.tsx +293 -0
- package/dist/components/catalyst-ui/forms/fuzzy-filter.tsx +17 -0
- package/dist/components/catalyst-ui/forms/fuzzy-sort.tsx +17 -0
- package/dist/components/catalyst-ui/forms/icon-field.tsx +51 -0
- package/dist/components/catalyst-ui/forms/index.ts +58 -0
- package/dist/components/catalyst-ui/forms/inline-edit.tsx +108 -0
- package/dist/components/catalyst-ui/forms/inplace.tsx +174 -0
- package/dist/components/catalyst-ui/forms/input-icon.tsx +39 -0
- package/dist/components/catalyst-ui/forms/input-mask.tsx +216 -0
- package/dist/components/catalyst-ui/forms/input-text.tsx +52 -0
- package/dist/components/catalyst-ui/forms/json-input.tsx +261 -0
- package/dist/components/catalyst-ui/forms/key-filter.tsx +238 -0
- package/dist/components/catalyst-ui/forms/label-variant.tsx +53 -0
- package/dist/components/catalyst-ui/forms/listbox.tsx +118 -0
- package/dist/components/catalyst-ui/forms/multi-cascade-tree.tsx +586 -0
- package/dist/components/catalyst-ui/forms/multi-cascader.tsx +429 -0
- package/dist/components/catalyst-ui/forms/multi-select.tsx +161 -0
- package/dist/components/catalyst-ui/forms/password-input.tsx +54 -0
- package/dist/components/catalyst-ui/forms/pills-input.tsx +133 -0
- package/dist/components/catalyst-ui/forms/pin-input.tsx +354 -0
- package/dist/components/catalyst-ui/forms/profile-dropdown.tsx +219 -0
- package/dist/components/catalyst-ui/forms/radio-tile.tsx +245 -0
- package/dist/components/catalyst-ui/forms/rating-2.tsx +140 -0
- package/dist/components/catalyst-ui/forms/search-input.tsx +49 -0
- package/dist/components/catalyst-ui/forms/select-button.tsx +155 -0
- package/dist/components/catalyst-ui/forms/step-form-wizard.tsx +877 -0
- package/dist/components/catalyst-ui/forms/tags-input-1.tsx +457 -0
- package/dist/components/catalyst-ui/forms/textarea-2.tsx +36 -0
- package/dist/components/catalyst-ui/forms/tree-picker.tsx +295 -0
- package/dist/components/catalyst-ui/hooks/demo.tsx +2757 -0
- package/dist/components/catalyst-ui/hooks/index.ts +106 -0
- package/dist/components/catalyst-ui/hooks/react-hook-docs.tsx +608 -0
- package/dist/components/catalyst-ui/hooks/use-api-key.tsx +151 -0
- package/dist/components/catalyst-ui/hooks/use-async.tsx +36 -0
- package/dist/components/catalyst-ui/hooks/use-auto-scroll.tsx +139 -0
- package/dist/components/catalyst-ui/hooks/use-breakpoint.tsx +21 -0
- package/dist/components/catalyst-ui/hooks/use-character-limit.tsx +37 -0
- package/dist/components/catalyst-ui/hooks/use-click-outside.tsx +27 -0
- package/dist/components/catalyst-ui/hooks/use-client.tsx +30 -0
- package/dist/components/catalyst-ui/hooks/use-color-theme.tsx +4933 -0
- package/dist/components/catalyst-ui/hooks/use-color-wheel.tsx +905 -0
- package/dist/components/catalyst-ui/hooks/use-current-time-indicator.tsx +65 -0
- package/dist/components/catalyst-ui/hooks/use-debounce-fetcher.tsx +56 -0
- package/dist/components/catalyst-ui/hooks/use-debounce-submit.tsx +45 -0
- package/dist/components/catalyst-ui/hooks/use-debounce.tsx +18 -0
- package/dist/components/catalyst-ui/hooks/use-debounced-fuse-search.tsx +168 -0
- package/dist/components/catalyst-ui/hooks/use-delegated-anchors.tsx +87 -0
- package/dist/components/catalyst-ui/hooks/use-document-title.tsx +14 -0
- package/dist/components/catalyst-ui/hooks/use-event-callback.tsx +24 -0
- package/dist/components/catalyst-ui/hooks/use-event-source.tsx +69 -0
- package/dist/components/catalyst-ui/hooks/use-event-visibility.tsx +72 -0
- package/dist/components/catalyst-ui/hooks/use-expandable.tsx +18 -0
- package/dist/components/catalyst-ui/hooks/use-export-markdown-usage.tsx +92 -0
- package/dist/components/catalyst-ui/hooks/use-export-tsx.tsx +50 -0
- package/dist/components/catalyst-ui/hooks/use-external-scripts.tsx +44 -0
- package/dist/components/catalyst-ui/hooks/use-favicon.tsx +16 -0
- package/dist/components/catalyst-ui/hooks/use-fetch.tsx +64 -0
- package/dist/components/catalyst-ui/hooks/use-file-upload.tsx +405 -0
- package/dist/components/catalyst-ui/hooks/use-focus-within.tsx +16 -0
- package/dist/components/catalyst-ui/hooks/use-form.tsx +86 -0
- package/dist/components/catalyst-ui/hooks/use-fuse-search.tsx +155 -0
- package/dist/components/catalyst-ui/hooks/use-fuzzy-search.tsx +17 -0
- package/dist/components/catalyst-ui/hooks/use-global-loading-state.tsx +7 -0
- package/dist/components/catalyst-ui/hooks/use-global-navigation-state.tsx +23 -0
- package/dist/components/catalyst-ui/hooks/use-global-pending-state.tsx +10 -0
- package/dist/components/catalyst-ui/hooks/use-global-submitting-state.tsx +7 -0
- package/dist/components/catalyst-ui/hooks/use-google-font.tsx +39 -0
- package/dist/components/catalyst-ui/hooks/use-hover.tsx +24 -0
- package/dist/components/catalyst-ui/hooks/use-hydrated.tsx +31 -0
- package/dist/components/catalyst-ui/hooks/use-intersection-observer.tsx +28 -0
- package/dist/components/catalyst-ui/hooks/use-isomorphic-layout-effect.tsx +9 -0
- package/dist/components/catalyst-ui/hooks/use-key-press.tsx +30 -0
- package/dist/components/catalyst-ui/hooks/use-keyboard-shortcut.tsx +69 -0
- package/dist/components/catalyst-ui/hooks/use-keyboard.tsx +16 -0
- package/dist/components/catalyst-ui/hooks/use-local-storage-auto-save.tsx +24 -0
- package/dist/components/catalyst-ui/hooks/use-local-storage.tsx +32 -0
- package/dist/components/catalyst-ui/hooks/use-locales.tsx +40 -0
- package/dist/components/catalyst-ui/hooks/use-long-press.tsx +16 -0
- package/dist/components/catalyst-ui/hooks/use-markdown-batches.tsx +120 -0
- package/dist/components/catalyst-ui/hooks/use-markdown-to-html.tsx +42 -0
- package/dist/components/catalyst-ui/hooks/use-mount-effect.tsx +5 -0
- package/dist/components/catalyst-ui/hooks/use-mounted.tsx +11 -0
- package/dist/components/catalyst-ui/hooks/use-mouse-enter.tsx +13 -0
- package/dist/components/catalyst-ui/hooks/use-move.tsx +16 -0
- package/dist/components/catalyst-ui/hooks/use-mutation-observer-useage.tsx +96 -0
- package/dist/components/catalyst-ui/hooks/use-mutation-observer.tsx +117 -0
- package/dist/components/catalyst-ui/hooks/use-on-click-outside.tsx +38 -0
- package/dist/components/catalyst-ui/hooks/use-online-status.tsx +23 -0
- package/dist/components/catalyst-ui/hooks/use-outside-click.tsx +25 -0
- package/dist/components/catalyst-ui/hooks/use-overlay-listener.tsx +31 -0
- package/dist/components/catalyst-ui/hooks/use-overlay-scroll-listener.tsx +128 -0
- package/dist/components/catalyst-ui/hooks/use-pagination.tsx +68 -0
- package/dist/components/catalyst-ui/hooks/use-press.tsx +17 -0
- package/dist/components/catalyst-ui/hooks/use-previous.tsx +13 -0
- package/dist/components/catalyst-ui/hooks/use-read-local-storage.tsx +73 -0
- package/dist/components/catalyst-ui/hooks/use-reducer.tsx +0 -0
- package/dist/components/catalyst-ui/hooks/use-resize-listener.tsx +18 -0
- package/dist/components/catalyst-ui/hooks/use-screen.tsx +100 -0
- package/dist/components/catalyst-ui/hooks/use-script.tsx +102 -0
- package/dist/components/catalyst-ui/hooks/use-scroll-lock.tsx +91 -0
- package/dist/components/catalyst-ui/hooks/use-scroll-position.tsx +23 -0
- package/dist/components/catalyst-ui/hooks/use-sec-fetch-parser.tsx +52 -0
- package/dist/components/catalyst-ui/hooks/use-session-storage.tsx +31 -0
- package/dist/components/catalyst-ui/hooks/use-should-hydrate.tsx +27 -0
- package/dist/components/catalyst-ui/hooks/use-slide-in-1.tsx +96 -0
- package/dist/components/catalyst-ui/hooks/use-slide-in.tsx +368 -0
- package/dist/components/catalyst-ui/hooks/use-slider-with-input.tsx +106 -0
- package/dist/components/catalyst-ui/hooks/use-smooth-scroll.tsx +35 -0
- package/dist/components/catalyst-ui/hooks/use-stream.tsx +576 -0
- package/dist/components/catalyst-ui/hooks/use-tailwind-converter.tsx +465 -0
- package/dist/components/catalyst-ui/hooks/use-throttle.tsx +22 -0
- package/dist/components/catalyst-ui/hooks/use-transition.tsx +0 -0
- package/dist/components/catalyst-ui/hooks/use-unmount-effect.tsx +15 -0
- package/dist/components/catalyst-ui/hooks/use-update-effect.tsx +13 -0
- package/dist/components/catalyst-ui/hooks/use-validate-credit-card.tsx +112 -0
- package/dist/components/catalyst-ui/hooks/use-window-size.tsx +23 -0
- package/dist/components/catalyst-ui/hooks/useDevList.tsx +185 -0
- package/dist/components/catalyst-ui/hooks/useOnWindowResize.tsx +15 -0
- package/dist/components/catalyst-ui/index.ts +38 -0
- package/dist/components/catalyst-ui/inputs/autocomplete.tsx +569 -0
- package/dist/components/catalyst-ui/inputs/autocomplete1.tsx +323 -0
- package/dist/components/catalyst-ui/inputs/cc-input.tsx +44 -0
- package/dist/components/catalyst-ui/inputs/email-address-input.tsx +17 -0
- package/dist/components/catalyst-ui/inputs/index.ts +30 -0
- package/dist/components/catalyst-ui/inputs/input-with-characters-left.tsx +41 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-add-on.tsx +25 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-button.tsx +27 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-icon-button.tsx +29 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-inline-add-on.tsx +24 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-inline-button.tsx +24 -0
- package/dist/components/catalyst-ui/inputs/input-with-end-select.tsx +27 -0
- package/dist/components/catalyst-ui/inputs/input-with-inline-add-ons.tsx +27 -0
- package/dist/components/catalyst-ui/inputs/input-with-inline-start-and-end-add-on.tsx +27 -0
- package/dist/components/catalyst-ui/inputs/input-with-inner-tags.tsx +60 -0
- package/dist/components/catalyst-ui/inputs/input-with-inset-label.tsx +23 -0
- package/dist/components/catalyst-ui/inputs/input-with-mask.tsx +44 -0
- package/dist/components/catalyst-ui/inputs/input-with-password-strength-indicator.tsx +137 -0
- package/dist/components/catalyst-ui/inputs/input-with-start-add-on.tsx +24 -0
- package/dist/components/catalyst-ui/inputs/input-with-start-inline-add-on.tsx +24 -0
- package/dist/components/catalyst-ui/inputs/input-with-start-select.tsx +30 -0
- package/dist/components/catalyst-ui/inputs/input-with-tags.tsx +72 -0
- package/dist/components/catalyst-ui/inputs/number-input-with-chevrons.tsx +61 -0
- package/dist/components/catalyst-ui/inputs/number-input-with-plus-minus-buttons.tsx +52 -0
- package/dist/components/catalyst-ui/inputs/search-input-with-icon-and-button.tsx +32 -0
- package/dist/components/catalyst-ui/inputs/search-input-with-kbd.tsx +26 -0
- package/dist/components/catalyst-ui/inputs/search-input-with-loader.tsx +59 -0
- package/dist/components/catalyst-ui/interactive/3d-pin.tsx +175 -0
- package/dist/components/catalyst-ui/interactive/action-sheet.tsx +240 -0
- package/dist/components/catalyst-ui/interactive/activity-card.tsx +196 -0
- package/dist/components/catalyst-ui/interactive/ai-prompt.tsx +441 -0
- package/dist/components/catalyst-ui/interactive/animated-cursor.tsx +254 -0
- package/dist/components/catalyst-ui/interactive/background-paths.tsx +172 -0
- package/dist/components/catalyst-ui/interactive/can-edit.tsx +100 -0
- package/dist/components/catalyst-ui/interactive/color-swatch.tsx +441 -0
- package/dist/components/catalyst-ui/interactive/currency-transfer.tsx +228 -0
- package/dist/components/catalyst-ui/interactive/cursor.tsx +109 -0
- package/dist/components/catalyst-ui/interactive/drag-and-drop.tsx +374 -0
- package/dist/components/catalyst-ui/interactive/drawing-2.tsx +1147 -0
- package/dist/components/catalyst-ui/interactive/drawing.tsx +576 -0
- package/dist/components/catalyst-ui/interactive/drop-zone-external.tsx +377 -0
- package/dist/components/catalyst-ui/interactive/drop-zone.tsx +399 -0
- package/dist/components/catalyst-ui/interactive/dropzone-1.tsx +259 -0
- package/dist/components/catalyst-ui/interactive/export-excel.tsx +201 -0
- package/dist/components/catalyst-ui/interactive/file-upload.tsx +403 -0
- package/dist/components/catalyst-ui/interactive/file_upload-1.tsx +422 -0
- package/dist/components/catalyst-ui/interactive/filesaver.tsx +51 -0
- package/dist/components/catalyst-ui/interactive/gantt-1.tsx +1464 -0
- package/dist/components/catalyst-ui/interactive/highlight.tsx +84 -0
- package/dist/components/catalyst-ui/interactive/index.ts +49 -0
- package/dist/components/catalyst-ui/interactive/kanban-1.tsx +338 -0
- package/dist/components/catalyst-ui/interactive/lens.tsx +121 -0
- package/dist/components/catalyst-ui/interactive/magnetic.tsx +105 -0
- package/dist/components/catalyst-ui/interactive/mouse-effect-card.tsx +158 -0
- package/dist/components/catalyst-ui/interactive/pdf-generator.tsx +414 -0
- package/dist/components/catalyst-ui/interactive/pdf-signature.tsx +623 -0
- package/dist/components/catalyst-ui/interactive/pdf-viewer.tsx +931 -0
- package/dist/components/catalyst-ui/interactive/pointer.tsx +108 -0
- package/dist/components/catalyst-ui/interactive/ripple.tsx +103 -0
- package/dist/components/catalyst-ui/interactive/scroll-based-velocity.tsx +205 -0
- package/dist/components/catalyst-ui/interactive/signature.tsx +606 -0
- package/dist/components/catalyst-ui/interactive/smooth-cursor.tsx +236 -0
- package/dist/components/catalyst-ui/interactive/sortable.tsx +420 -0
- package/dist/components/catalyst-ui/interactive/spreadsheet.tsx +601 -0
- package/dist/components/catalyst-ui/interactive/task-board.tsx +902 -0
- package/dist/components/catalyst-ui/interactive/terminal.tsx +587 -0
- package/dist/components/catalyst-ui/interactive/tour-1.tsx +426 -0
- package/dist/components/catalyst-ui/interactive/tour.tsx +830 -0
- package/dist/components/catalyst-ui/interactive/transition.tsx +913 -0
- package/dist/components/catalyst-ui/interactive/transitionable-portal.tsx +0 -0
- package/dist/components/catalyst-ui/interactive/tree-view.tsx +427 -0
- package/dist/components/catalyst-ui/interactive/virtualizer.tsx +233 -0
- package/dist/components/catalyst-ui/interactive/watermark.tsx +211 -0
- package/dist/components/catalyst-ui/lo-fi/components/AboutPageLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/components/ActionPanelLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/components/AnchorLoFi-lofi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/ButtonGroupLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/ButtonIconLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/ButtonLinkLoFi.tsx +5 -0
- package/dist/components/catalyst-ui/lo-fi/components/ButtonLoadingLoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/components/CalendarForSidebarLoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/components/CalendarMultiDayLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/CalloutLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/Chart.tsx +239 -0
- package/dist/components/catalyst-ui/lo-fi/components/ContainerLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/CopyTextLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/DebouncedInputLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/DescriptionListLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/EditorLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/EmptyStateLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/components/ErrorPageLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/components/ExportFileLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/components/FlyoutMenuLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/FormLayoutLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/components/HeroCalendar.tsx +115 -0
- package/dist/components/catalyst-ui/lo-fi/components/HeroLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/components/ListLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/LoadingLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/LogoCloudLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/MediaObjectLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/MultiColumnLayoutLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/NavButtonLoFi.tsx +6 -0
- package/dist/components/catalyst-ui/lo-fi/components/NavButtonStyledLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/ScaffoldingLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/SectionHeadingLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/VerticalNavigationLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/accordion-lofi.tsx +76 -0
- package/dist/components/catalyst-ui/lo-fi/components/accountForm-lofi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/components/alert-lofi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/components/alertDialog-lofi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/announcement-lofi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/components/aspectRatio-lofi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/components/authenticator-lofi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/components/avatar-lofi.tsx +6 -0
- package/dist/components/catalyst-ui/lo-fi/components/badge-lofi.tsx +5 -0
- package/dist/components/catalyst-ui/lo-fi/components/banner.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/components/bento-grid.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/components/blog.tsx +37 -0
- package/dist/components/catalyst-ui/lo-fi/components/breadcrumb.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/button.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/card-header.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/components/card-heading.tsx +30 -0
- package/dist/components/catalyst-ui/lo-fi/components/card.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/components/carousel.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/cart.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/components/catchAll.tsx +660 -0
- package/dist/components/catalyst-ui/lo-fi/components/categoryFilter.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/components/categoryPage.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/components/categoryPreviews.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/components/checkbox.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/checkout-form.tsx +27 -0
- package/dist/components/catalyst-ui/lo-fi/components/checkout.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/components/checkoutPage.tsx +67 -0
- package/dist/components/catalyst-ui/lo-fi/components/clientOnly.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/components/collapsible.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/columns.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/combobox.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/contact-section.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/components/content-section.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/components/cookieSettings.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/components/cta-section.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/components/data.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/components/dataTable.tsx +36 -0
- package/dist/components/catalyst-ui/lo-fi/components/datePicker.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/details.tsx +36 -0
- package/dist/components/catalyst-ui/lo-fi/components/dialog.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/components/display-code.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/components/dropdown.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/components/dropdownMenu.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/faq-section.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/components/feature-section.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/components/feature.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/components/feedList.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/components/footer.tsx +40 -0
- package/dist/components/catalyst-ui/lo-fi/components/form.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/components/fourofour.tsx +42 -0
- package/dist/components/catalyst-ui/lo-fi/components/gridLists.tsx +36 -0
- package/dist/components/catalyst-ui/lo-fi/components/header.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/hero.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/components/homeScreen.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/components/hooks.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/components/hoverCard.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/icons.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/components/image.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/components/incentives.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/components/index.ts +152 -0
- package/dist/components/catalyst-ui/lo-fi/components/input.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/label.tsx +5 -0
- package/dist/components/catalyst-ui/lo-fi/components/landingPage.tsx +35 -0
- package/dist/components/catalyst-ui/lo-fi/components/loadingPage.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/menubar.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/motherboard-blog.tsx +178 -0
- package/dist/components/catalyst-ui/lo-fi/components/motherboard.tsx +91 -0
- package/dist/components/catalyst-ui/lo-fi/components/newsletter.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/components/notifications.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/components/orderDetails.tsx +51 -0
- package/dist/components/catalyst-ui/lo-fi/components/orderHistory.tsx +35 -0
- package/dist/components/catalyst-ui/lo-fi/components/orderSumaries.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/components/pageHeading.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/components/pageNav.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/components/pagination.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/paymentMethod.tsx +32 -0
- package/dist/components/catalyst-ui/lo-fi/components/pricing.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/components/pricingPage.tsx +47 -0
- package/dist/components/catalyst-ui/lo-fi/components/prisma.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/components/product-card.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/components/product-gallery.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/productList.tsx +41 -0
- package/dist/components/catalyst-ui/lo-fi/components/productOverview.tsx +62 -0
- package/dist/components/catalyst-ui/lo-fi/components/productsFeatured.tsx +43 -0
- package/dist/components/catalyst-ui/lo-fi/components/progress.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/components/promo.tsx +33 -0
- package/dist/components/catalyst-ui/lo-fi/components/radioGroup.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/reportIssue.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/components/review.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/components/reviews.tsx +60 -0
- package/dist/components/catalyst-ui/lo-fi/components/sales-lofi.tsx +257 -0
- package/dist/components/catalyst-ui/lo-fi/components/scaffolding.tsx +46 -0
- package/dist/components/catalyst-ui/lo-fi/components/scrollBar.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/components/select.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/settings.tsx +32 -0
- package/dist/components/catalyst-ui/lo-fi/components/shoppingCart.tsx +52 -0
- package/dist/components/catalyst-ui/lo-fi/components/sidebar.tsx +38 -0
- package/dist/components/catalyst-ui/lo-fi/components/skeleton.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/components/slider.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/components/stacked-lofi.tsx +43 -0
- package/dist/components/catalyst-ui/lo-fi/components/stacked.tsx +52 -0
- package/dist/components/catalyst-ui/lo-fi/components/stats.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/components/storeFront.tsx +65 -0
- package/dist/components/catalyst-ui/lo-fi/components/storeNav.tsx +37 -0
- package/dist/components/catalyst-ui/lo-fi/components/switch.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/components/tabs.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/components/tailwind.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/components/team.tsx +27 -0
- package/dist/components/catalyst-ui/lo-fi/components/team2.tsx +27 -0
- package/dist/components/catalyst-ui/lo-fi/components/templatePage.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/components/testimonial.tsx +36 -0
- package/dist/components/catalyst-ui/lo-fi/components/testtimonial.tsx +35 -0
- package/dist/components/catalyst-ui/lo-fi/components/textarea.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/components/toast.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/components/toggle.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/components/tooltip.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/components/useHydrated.tsx +38 -0
- package/dist/components/catalyst-ui/lo-fi/index.ts +528 -0
- package/dist/components/catalyst-ui/lo-fi/utils/atom.tsx +30 -0
- package/dist/components/catalyst-ui/lo-fi/utils/component.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AIPromptLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AboutLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AccessLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AccountLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ActivityGoalLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AiChatLoFi.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AlertV1LoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AspectRatioLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AuthProviderLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AuthSystemLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/v2/AutoCompleteV2LoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BLoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BankLoFi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BarcodeLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BasicAuthMiddlewareLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BatcherMiddlewareLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BlocksLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BlogEditorLoFi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BlogListLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BlogSidebarLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/BoxLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CORSMiddlewareLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CSSLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CalendarLoFi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CallOutLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CarServiceLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CardsLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CarouselHeroLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CategoriesNavigationLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CategoryFiltersSectionCenteredLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CategoryFiltersSectionLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CategoryFiltersSidebarLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ChatBubbleLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ChatLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckListLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckboxMultistateLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckboxTristateLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckoutCancelLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckoutSuccessLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CheckoutVariousLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ClientOnlyLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CnLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CodeSectionLoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CollapsesToIconsLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CollapsibleFileTreeLoFi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ConfigSectionLoFi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ConfirmPopupLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ContactLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ContainerLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ContextStorageMiddlewareLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CookieSettingsLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CoreLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/CreateAccountLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DashboardLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DashboardSidebarLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DebouncedFetcherAndSubmitLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DebouncedInputLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DefaultStyledLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DeferredContentLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DelegateAnchorsToRemixLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DetailLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DeviceMockupLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DiffLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DisplayCodeLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DockLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DragAndDropLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DrawerLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DrawingLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DrawingV2LoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/DropZoneLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ECommerceLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/EmbedLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/EmblaCarouselLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/EmblaCarouselSnapLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/EnhancedChartLoFi.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ErrorLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ExerciseMinutesLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FABLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FaqLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FeatureSectionLoFi.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FeedLoFi.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FileManagerLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FilterComboboxLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FilterDrawerLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FilterTanStackTableLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FixedMarkerLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FlexboxGridLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FloatingSidebarWithSubmenusLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ForLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ForgotPasswordLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FormsLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/Four04LoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FunctionalLeftRightSidebarLoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FuseSearchInputLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FuzzyFilterLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/FuzzySortLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/GalleriaLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/GnattChartLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/GridLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/H3LoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/H4LoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/H5LoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HeaderNavLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HelpLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HighlightLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HighlightV1LoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HomeLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/HoneypotMiddlewareLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/IBLoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ILoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ImageLoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ImageSectionLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/InADialogLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/IncIdLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/IncentivesCardLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/IndicatorLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/InsetSidebarSecondaryNavLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/InsufficientPermissionsLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/InvoiceLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/JWKAuthMiddlewareLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LandingLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LayoutLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LoadErrorPageLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LoadingLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LoadingOverlayLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LoadingPageLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/LoginLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MailLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MarketingLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MegaMenuLoFi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MenuLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MessageLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MeterLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MobileNavLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ModalIntegrationsLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ModalV1LoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/MusicLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NavMainLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NavProjectsLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NavTreeViewLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NavUserLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NestedComboboxLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NestedCommandDialogLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NestedCommandLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NotFoundLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NoteSectionLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/NotificationLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OnTheRightLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OrderListLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OrderSummaryLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OrderedListLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OtpLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/OverlayPanelLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PDFGeneratorLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PMLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PageHeaderLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PageHeadingsSectionLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PaginationButtonLoFi.tsx +8 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PaginationWrapperLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PanelLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PanelMenuLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PasswordInputLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PaymentFormLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PaymentMethodLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PaymentsLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PdfSignatureLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PdfViewerLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PlaceholderCodeLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PlaygroundLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PopconfirmLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PrefetchAnchorsLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/PrismaClientExtensionLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductCategoryLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductComparisonLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductDetailsLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductEditLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductPricingLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProductsLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProfileCreateLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProfileListLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProfileLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProgressLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ProseLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/QRCodeLoFi.tsx +43 -0
- package/dist/components/catalyst-ui/lo-fi/v2/QaDiscussionLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/QaForumLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RailLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RatingLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ReactHooksDocsLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ReceiptLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RedirectBadRequestsLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RegisterLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RemixAuthLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RemixLinkLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ReportIssueLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RequestIDMiddlewareLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ResetPasswordLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ResponsiveLinkLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/RightSidebarLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SaasLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SchedulerLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ScrolltopLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SecFetchParserLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SecureHeadersMiddlewareLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ServerTimingMiddlewareLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ServiceRepairFormLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SessionLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SettingsLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ShareLoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/Sidebar24LoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarAgnosticLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarDetailsLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarInAPopoverLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarNavLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarReactRouterLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarStylisticDefaultLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarStylisticDefaultWRightLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SidebarWithSubmenusLoFi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SignUpLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SignatureLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SingletonMiddlewareLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SiteHeaderLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SmallTableLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SpeedDialLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SpinLoFi.tsx +7 -0
- package/dist/components/catalyst-ui/lo-fi/v2/SpinnerLoFi.tsx +9 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StackLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StackedListsLoFi.tsx +50 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StackedLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StateChangeLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StatsLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StatusLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StepsLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StoreFrontLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StoreNavSectionLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StripeLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/StyleProviderLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TSTableLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TSTableV1LoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TSTableV2LoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TabViewLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TableLoFi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TagLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TailwindcssTxtLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TaskListLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TaskboardLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TasksLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TeamMembersLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TerminalLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TextEditorLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ThemeSelectorLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TicketsLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TimelineLoFi.tsx +33 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TimelineV1LoFi.tsx +36 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TitleSectionLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ToDoLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ToggleClassLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/ToolbarLoFi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TourLoFi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TransitionLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TransitionablePortalLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TravelLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/TreeViewLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UnderConstructionLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UsageSectionLoFi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UsageSectionNoDashLoFi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseAsyncLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseClickOutsideLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseCopyToClipboardLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseCounterLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseDebounceLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseDebouncedFuseSearchLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseEventListenerLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseExportMarkdownLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseExportTsxLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseExternalScriptsLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFaviconLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFetchLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFocusLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFocusWithinLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFormLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFuseSearchLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseFuzzySearchLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalLoadingStateLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalNavigationStateLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalPendingStateLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseGlobalSubmittingStateLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseHoverLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseIntersectionObserverLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseIntervalLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseKeyPressLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseKeyboardLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseLocalStorageLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseLocalesLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseLongPressLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMediaQueryLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMobileLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMountEffectLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMountedLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMoveLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseMutationObserverLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseOnlineStatusLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseOverlayListenerLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseOverlayScrollListenerLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UsePressLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UsePreviousLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseResizeListenerLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseScrollPositionLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseSessionStorageLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseShouldHydrateLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseSlideInLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseStreamLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseThrottleLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseTimeoutLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseToggleLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseUnmountEffectLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseUpdateEffectLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UseWindowSizeLoFi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UserBasedAccessRulesLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UserLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/UserOnboardingLoFi.tsx +12 -0
- package/dist/components/catalyst-ui/lo-fi/v2/VerificationLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/VirtualizerLoFi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WatermarkLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithACalendarLoFi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithAShoppingCartLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithATreeViewLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithCollapsibleNestedSidebarsLoFi.tsx +22 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithCollapsibleSectionsLoFi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithCollapsibleSubmenusLoFi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithCookieMiddlewareLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithInitialLoadingStateLoFi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithLoadingNavStateChangesLoFi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithNavigationGroupedBySectionLoFi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/WithSubmenusAsDropdownsLoFi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/action-bar-lofi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/block-quote-lofi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/calendar-lofi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/cascade-tree-lofi.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/v2/cascader-lofi.tsx +27 -0
- package/dist/components/catalyst-ui/lo-fi/v2/changelog-lofi.tsx +14 -0
- package/dist/components/catalyst-ui/lo-fi/v2/check-tree-lofi.tsx +27 -0
- package/dist/components/catalyst-ui/lo-fi/v2/check-tree-picker-lofi.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/v2/checkbox-card-v1-lofi.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/v2/checkbox-v1-lofi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/client-only-mermaid-lofi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/color-picker-lofi.tsx +24 -0
- package/dist/components/catalyst-ui/lo-fi/v2/combobox-v1-lofi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/credit-card-input-lofi.tsx +32 -0
- package/dist/components/catalyst-ui/lo-fi/v2/floating-label-lofi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/form-wizard-lofi.tsx +26 -0
- package/dist/components/catalyst-ui/lo-fi/v2/hero-lofi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/heroV2-lofi.tsx +17 -0
- package/dist/components/catalyst-ui/lo-fi/v2/inline-edit-lofi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/inplaceLoFi.tsx +10 -0
- package/dist/components/catalyst-ui/lo-fi/v2/input-mask-lofi.tsx +33 -0
- package/dist/components/catalyst-ui/lo-fi/v2/install-code-array-section-lofi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/install-code-section-lofi.tsx +16 -0
- package/dist/components/catalyst-ui/lo-fi/v2/install-github-section-lofi.tsx +11 -0
- package/dist/components/catalyst-ui/lo-fi/v2/json-input-lofi.tsx +29 -0
- package/dist/components/catalyst-ui/lo-fi/v2/multi-cascade-tree-lofi.tsx +40 -0
- package/dist/components/catalyst-ui/lo-fi/v2/multi-cascader-lofi.tsx +28 -0
- package/dist/components/catalyst-ui/lo-fi/v2/multi-combobox-lofi.tsx +31 -0
- package/dist/components/catalyst-ui/lo-fi/v2/nav-shopping-cart-lofi.tsx +13 -0
- package/dist/components/catalyst-ui/lo-fi/v2/pin-input-lofi.tsx +23 -0
- package/dist/components/catalyst-ui/lo-fi/v2/select-button-lofi.tsx +20 -0
- package/dist/components/catalyst-ui/lo-fi/v2/sidebar28-lofi.tsx +15 -0
- package/dist/components/catalyst-ui/lo-fi/v2/step-form-wizard-lofi.tsx +34 -0
- package/dist/components/catalyst-ui/lo-fi/v2/tags-input-lofi.tsx +21 -0
- package/dist/components/catalyst-ui/lo-fi/v2/textarea-lofi.tsx +18 -0
- package/dist/components/catalyst-ui/lo-fi/v2/textarea-v2-lofi.tsx +19 -0
- package/dist/components/catalyst-ui/lo-fi/v2/transfer-list-lofi.tsx +40 -0
- package/dist/components/catalyst-ui/lo-fi/v2/tri-state-checkbox-lofi.tsx +25 -0
- package/dist/components/catalyst-ui/lo-fi/v2/tsxSection-lofi.tsx +20 -0
- package/dist/components/catalyst-ui/marketing/demo/demos.tsx +0 -0
- package/dist/components/catalyst-ui/marketing/demo/sectionHeadings-demo.tsx +103 -0
- package/dist/components/catalyst-ui/marketing/elements/banner-with-effect.tsx +0 -0
- package/dist/components/catalyst-ui/marketing/elements/flyoutMenu.tsx +318 -0
- package/dist/components/catalyst-ui/marketing/index.ts +41 -0
- package/dist/components/catalyst-ui/marketing/sections/animated-testimonials.tsx +169 -0
- package/dist/components/catalyst-ui/marketing/sections/bentoGrid.tsx +300 -0
- package/dist/components/catalyst-ui/marketing/sections/blog.tsx +469 -0
- package/dist/components/catalyst-ui/marketing/sections/blogEditor.tsx +358 -0
- package/dist/components/catalyst-ui/marketing/sections/blogPost.tsx +208 -0
- package/dist/components/catalyst-ui/marketing/sections/carousel.tsx +928 -0
- package/dist/components/catalyst-ui/marketing/sections/cta.tsx +379 -0
- package/dist/components/catalyst-ui/marketing/sections/faq.tsx +147 -0
- package/dist/components/catalyst-ui/marketing/sections/feature-carousel.tsx +505 -0
- package/dist/components/catalyst-ui/marketing/sections/feature-section.tsx +83 -0
- package/dist/components/catalyst-ui/marketing/sections/feature-showcase.tsx +250 -0
- package/dist/components/catalyst-ui/marketing/sections/feature.tsx +279 -0
- package/dist/components/catalyst-ui/marketing/sections/footer.tsx +390 -0
- package/dist/components/catalyst-ui/marketing/sections/header-1.tsx +450 -0
- package/dist/components/catalyst-ui/marketing/sections/header.tsx +414 -0
- package/dist/components/catalyst-ui/marketing/sections/hero-2.tsx +55 -0
- package/dist/components/catalyst-ui/marketing/sections/hero-3.tsx +12 -0
- package/dist/components/catalyst-ui/marketing/sections/hero-section.tsx +17 -0
- package/dist/components/catalyst-ui/marketing/sections/hero.tsx +169 -0
- package/dist/components/catalyst-ui/marketing/sections/image-section.tsx +36 -0
- package/dist/components/catalyst-ui/marketing/sections/index.ts +33 -0
- package/dist/components/catalyst-ui/marketing/sections/logoClouds.tsx +295 -0
- package/dist/components/catalyst-ui/marketing/sections/newsLetter.tsx +137 -0
- package/dist/components/catalyst-ui/marketing/sections/page-header-section.tsx +127 -0
- package/dist/components/catalyst-ui/marketing/sections/pricing-carousel-2.tsx +282 -0
- package/dist/components/catalyst-ui/marketing/sections/pricing-carousel.tsx +555 -0
- package/dist/components/catalyst-ui/marketing/sections/pricing-single-card.tsx +154 -0
- package/dist/components/catalyst-ui/marketing/sections/pricing.tsx +790 -0
- package/dist/components/catalyst-ui/marketing/sections/testimonial-carousel.tsx +499 -0
- package/dist/components/catalyst-ui/marketing/sections/testimonial.tsx +204 -0
- package/dist/components/catalyst-ui/marketing/sections/title-section.tsx +57 -0
- package/dist/components/catalyst-ui/media/3d-marquee.tsx +144 -0
- package/dist/components/catalyst-ui/media/avatar-circles.tsx +78 -0
- package/dist/components/catalyst-ui/media/blur-fade.tsx +106 -0
- package/dist/components/catalyst-ui/media/carousel-1.tsx +926 -0
- package/dist/components/catalyst-ui/media/carousel-2.tsx +198 -0
- package/dist/components/catalyst-ui/media/carousel-hero.tsx +286 -0
- package/dist/components/catalyst-ui/media/carousel-simple.tsx +244 -0
- package/dist/components/catalyst-ui/media/color-palette-card.tsx +85 -0
- package/dist/components/catalyst-ui/media/cropper.tsx +68 -0
- package/dist/components/catalyst-ui/media/embla-carousel-arrow-buttons.tsx +117 -0
- package/dist/components/catalyst-ui/media/embla-carousel-snap.tsx +103 -0
- package/dist/components/catalyst-ui/media/galleria.tsx +316 -0
- package/dist/components/catalyst-ui/media/globe.tsx +138 -0
- package/dist/components/catalyst-ui/media/google-maps-component.tsx +540 -0
- package/dist/components/catalyst-ui/media/icon-cloud.tsx +312 -0
- package/dist/components/catalyst-ui/media/image-comparison.tsx +251 -0
- package/dist/components/catalyst-ui/media/image-crop.tsx +366 -0
- package/dist/components/catalyst-ui/media/image-zoom.tsx +51 -0
- package/dist/components/catalyst-ui/media/index.ts +32 -0
- package/dist/components/catalyst-ui/media/infinite-scroll.tsx +303 -0
- package/dist/components/catalyst-ui/media/infinite-slider.tsx +108 -0
- package/dist/components/catalyst-ui/media/interactive-icon-cloud.tsx +100 -0
- package/dist/components/catalyst-ui/media/logo.tsx +100 -0
- package/dist/components/catalyst-ui/media/marquee.tsx +199 -0
- package/dist/components/catalyst-ui/media/marquee1.tsx +114 -0
- package/dist/components/catalyst-ui/media/parallax-scroll.tsx +119 -0
- package/dist/components/catalyst-ui/media/pixel-image.tsx +153 -0
- package/dist/components/catalyst-ui/media/video-player.tsx +94 -0
- package/dist/components/catalyst-ui/motions/animated-number.tsx +252 -0
- package/dist/components/catalyst-ui/motions/bg-media.tsx +122 -0
- package/dist/components/catalyst-ui/motions/border-beam.tsx +40 -0
- package/dist/components/catalyst-ui/motions/circle-menu.tsx +320 -0
- package/dist/components/catalyst-ui/motions/color-picker.tsx +490 -0
- package/dist/components/catalyst-ui/motions/color-wheel.tsx +81 -0
- package/dist/components/catalyst-ui/motions/direction-aware-tabs.tsx +568 -0
- package/dist/components/catalyst-ui/motions/dynamic-island.tsx +733 -0
- package/dist/components/catalyst-ui/motions/expandable-card.tsx +941 -0
- package/dist/components/catalyst-ui/motions/expandable-screen.tsx +455 -0
- package/dist/components/catalyst-ui/motions/floating-panel.tsx +1115 -0
- package/dist/components/catalyst-ui/motions/gradient-heading.tsx +116 -0
- package/dist/components/catalyst-ui/motions/index.ts +93 -0
- package/dist/components/catalyst-ui/motions/intro-disclosure.tsx +1345 -0
- package/dist/components/catalyst-ui/motions/light-board.tsx +888 -0
- package/dist/components/catalyst-ui/motions/loading-carousel.tsx +517 -0
- package/dist/components/catalyst-ui/motions/logo-carousel.tsx +586 -0
- package/dist/components/catalyst-ui/motions/morph-surface.tsx +779 -0
- package/dist/components/catalyst-ui/motions/motion-accordian.tsx +206 -0
- package/dist/components/catalyst-ui/motions/motion-alert-dialog.tsx +356 -0
- package/dist/components/catalyst-ui/motions/motion-avatar.tsx +384 -0
- package/dist/components/catalyst-ui/motions/motion-beam.tsx +674 -0
- package/dist/components/catalyst-ui/motions/motion-bento.tsx +262 -0
- package/dist/components/catalyst-ui/motions/motion-bento1.tsx +307 -0
- package/dist/components/catalyst-ui/motions/motion-button.tsx +107 -0
- package/dist/components/catalyst-ui/motions/motion-calendar.tsx +213 -0
- package/dist/components/catalyst-ui/motions/motion-card.tsx +1609 -0
- package/dist/components/catalyst-ui/motions/motion-card1.tsx +825 -0
- package/dist/components/catalyst-ui/motions/motion-card2.tsx +289 -0
- package/dist/components/catalyst-ui/motions/motion-card3.tsx +190 -0
- package/dist/components/catalyst-ui/motions/motion-carousel.tsx +517 -0
- package/dist/components/catalyst-ui/motions/motion-checkbox.tsx +77 -0
- package/dist/components/catalyst-ui/motions/motion-choicebox.tsx +360 -0
- package/dist/components/catalyst-ui/motions/motion-combobox.tsx +242 -0
- package/dist/components/catalyst-ui/motions/motion-command.tsx +328 -0
- package/dist/components/catalyst-ui/motions/motion-context-menu.tsx +391 -0
- package/dist/components/catalyst-ui/motions/motion-date-picker.tsx +162 -0
- package/dist/components/catalyst-ui/motions/motion-dialog.tsx +350 -0
- package/dist/components/catalyst-ui/motions/motion-drawer.tsx +1778 -0
- package/dist/components/catalyst-ui/motions/motion-drawer1.tsx +209 -0
- package/dist/components/catalyst-ui/motions/motion-dropdown-menu.tsx +429 -0
- package/dist/components/catalyst-ui/motions/motion-dropdown1.tsx +572 -0
- package/dist/components/catalyst-ui/motions/motion-feature-carousel.tsx +771 -0
- package/dist/components/catalyst-ui/motions/motion-file-upload.tsx +596 -0
- package/dist/components/catalyst-ui/motions/motion-group.tsx +194 -0
- package/dist/components/catalyst-ui/motions/motion-highlight.tsx +550 -0
- package/dist/components/catalyst-ui/motions/motion-highlight2.tsx +590 -0
- package/dist/components/catalyst-ui/motions/motion-hover-card.tsx +207 -0
- package/dist/components/catalyst-ui/motions/motion-images.tsx +53 -0
- package/dist/components/catalyst-ui/motions/motion-input.tsx +51 -0
- package/dist/components/catalyst-ui/motions/motion-list.tsx +170 -0
- package/dist/components/catalyst-ui/motions/motion-logo-carosel.tsx +668 -0
- package/dist/components/catalyst-ui/motions/motion-map.tsx +372 -0
- package/dist/components/catalyst-ui/motions/motion-navbar.tsx +69 -0
- package/dist/components/catalyst-ui/motions/motion-navigation-menu.tsx +302 -0
- package/dist/components/catalyst-ui/motions/motion-panel.tsx +338 -0
- package/dist/components/catalyst-ui/motions/motion-popover.tsx +281 -0
- package/dist/components/catalyst-ui/motions/motion-radio-card.tsx +77 -0
- package/dist/components/catalyst-ui/motions/motion-radio-group.tsx +54 -0
- package/dist/components/catalyst-ui/motions/motion-rating.tsx +182 -0
- package/dist/components/catalyst-ui/motions/motion-screen.tsx +441 -0
- package/dist/components/catalyst-ui/motions/motion-search-bar.tsx +1013 -0
- package/dist/components/catalyst-ui/motions/motion-section.tsx +270 -0
- package/dist/components/catalyst-ui/motions/motion-select.tsx +306 -0
- package/dist/components/catalyst-ui/motions/motion-spotlight.tsx +217 -0
- package/dist/components/catalyst-ui/motions/motion-switch.tsx +83 -0
- package/dist/components/catalyst-ui/motions/motion-tabs.tsx +554 -0
- package/dist/components/catalyst-ui/motions/motion-tabs2.tsx +257 -0
- package/dist/components/catalyst-ui/motions/motion-testimonials.tsx +282 -0
- package/dist/components/catalyst-ui/motions/motion-toast.tsx +398 -0
- package/dist/components/catalyst-ui/motions/motion-toolbar-tabs.tsx +519 -0
- package/dist/components/catalyst-ui/motions/motion-toolbar.tsx +1113 -0
- package/dist/components/catalyst-ui/motions/motion-tooltip.tsx +162 -0
- package/dist/components/catalyst-ui/motions/motion-tooltip2.tsx +82 -0
- package/dist/components/catalyst-ui/motions/motion-video-player.tsx +1056 -0
- package/dist/components/catalyst-ui/motions/motions-input.tsx +51 -0
- package/dist/components/catalyst-ui/motions/popover-form.tsx +469 -0
- package/dist/components/catalyst-ui/motions/profile-dropdown.tsx +237 -0
- package/dist/components/catalyst-ui/motions/radial-menu.tsx +303 -0
- package/dist/components/catalyst-ui/motions/roladex.tsx +194 -0
- package/dist/components/catalyst-ui/motions/roladex1.tsx +166 -0
- package/dist/components/catalyst-ui/motions/shift-card.tsx +302 -0
- package/dist/components/catalyst-ui/motions/side-panel.tsx +352 -0
- package/dist/components/catalyst-ui/motions/smooth-drawer.tsx +213 -0
- package/dist/components/catalyst-ui/motions/smooth-popover.tsx +491 -0
- package/dist/components/catalyst-ui/motions/sortable-list.tsx +712 -0
- package/dist/components/catalyst-ui/motions/stripe.tsx +261 -0
- package/dist/components/catalyst-ui/motions/texture-button.tsx +217 -0
- package/dist/components/catalyst-ui/motions/timer.tsx +286 -0
- package/dist/components/catalyst-ui/motions/toolbar-expandable.tsx +1138 -0
- package/dist/components/catalyst-ui/motions/youtube-player.tsx +614 -0
- package/dist/components/catalyst-ui/overlays/animated-modal.tsx +212 -0
- package/dist/components/catalyst-ui/overlays/animated-tooltip.tsx +99 -0
- package/dist/components/catalyst-ui/overlays/confirm-popup.tsx +219 -0
- package/dist/components/catalyst-ui/overlays/dialog-stack.tsx +558 -0
- package/dist/components/catalyst-ui/overlays/index.ts +19 -0
- package/dist/components/catalyst-ui/overlays/loading-overlay.tsx +324 -0
- package/dist/components/catalyst-ui/overlays/modal-integrations-1.tsx +300 -0
- package/dist/components/catalyst-ui/overlays/modal-integrations.tsx +301 -0
- package/dist/components/catalyst-ui/overlays/overlay-panel.tsx +233 -0
- package/dist/components/catalyst-ui/overlays/popconfirm.tsx +721 -0
- package/dist/components/catalyst-ui/overlays/sidebar-props.tsx +492 -0
- package/dist/components/catalyst-ui/overlays/sidebar.tsx +2208 -0
- package/dist/components/catalyst-ui/overlays/sidebarMenuItemLoading.tsx +124 -0
- package/dist/components/catalyst-ui/overlays/texture-card.tsx +309 -0
- package/dist/components/catalyst-ui/overlays/transitionable-portal.tsx +230 -0
- package/dist/components/catalyst-ui/pdf/generate_custom_pdf.tsx +40 -0
- package/dist/components/catalyst-ui/pdf/generate_pdf.tsx +196 -0
- package/dist/components/catalyst-ui/pdf/index.ts +12 -0
- package/dist/components/catalyst-ui/pdf/pdf.tsx +32 -0
- package/dist/components/catalyst-ui/pdf/pdf_generator.ts +141 -0
- package/dist/components/catalyst-ui/pdf/pdf_sender.$dealerId.$documentId.$dept.tsx +1260 -0
- package/dist/components/catalyst-ui/pdf/pdf_signer.$id.tsx +1438 -0
- package/dist/components/catalyst-ui/pdf/print_pdf.tsx +15905 -0
- package/dist/components/catalyst-ui/pdf/templateBuilder.tsx +1590 -0
- package/dist/components/catalyst-ui/pdf/test.tsx +53 -0
- package/dist/components/catalyst-ui/pos/index.ts +5 -0
- package/dist/components/catalyst-ui/pos/tools/barcodeScanner.tsx +160 -0
- package/dist/components/catalyst-ui/pos/tools/cashDrawerWizard.tsx +1403 -0
- package/dist/components/catalyst-ui/pos/tools/scan.mp4 +0 -0
- package/dist/components/catalyst-ui/primitives/alert.tsx +103 -0
- package/dist/components/catalyst-ui/primitives/annotated.tsx +133 -0
- package/dist/components/catalyst-ui/primitives/button-group.tsx +89 -0
- package/dist/components/catalyst-ui/primitives/checkbox-tree.tsx +175 -0
- package/dist/components/catalyst-ui/primitives/combobox.tsx +93 -0
- package/dist/components/catalyst-ui/primitives/description-list.tsx +88 -0
- package/dist/components/catalyst-ui/primitives/index.ts +59 -0
- package/dist/components/catalyst-ui/primitives/input-group.tsx +186 -0
- package/dist/components/catalyst-ui/primitives/menubar.tsx +273 -0
- package/dist/components/catalyst-ui/primitives/progress-bar.tsx +114 -0
- package/dist/components/catalyst-ui/primitives/radio-card.tsx +167 -0
- package/dist/components/catalyst-ui/primitives/scroll-area.tsx +56 -0
- package/dist/components/catalyst-ui/primitives/table.tsx +329 -0
- package/dist/components/catalyst-ui/prompt/ai-input-search.tsx +288 -0
- package/dist/components/catalyst-ui/prompt/ai-loading-state.tsx +313 -0
- package/dist/components/catalyst-ui/prompt/ai-prompt-input.tsx +305 -0
- package/dist/components/catalyst-ui/prompt/ai-voice.tsx +241 -0
- package/dist/components/catalyst-ui/prompt/chain-of-thought.tsx +146 -0
- package/dist/components/catalyst-ui/prompt/chatbot.tsx +201 -0
- package/dist/components/catalyst-ui/prompt/code-block-examples.tsx +227 -0
- package/dist/components/catalyst-ui/prompt/code-block.tsx +92 -0
- package/dist/components/catalyst-ui/prompt/conversation-actions.tsx +150 -0
- package/dist/components/catalyst-ui/prompt/conversation-avatars.tsx +92 -0
- package/dist/components/catalyst-ui/prompt/conversation-prompt-input.tsx +256 -0
- package/dist/components/catalyst-ui/prompt/conversation-scroll-bottom.tsx +121 -0
- package/dist/components/catalyst-ui/prompt/file-upload.tsx +310 -0
- package/dist/components/catalyst-ui/prompt/full-chat-app.tsx +759 -0
- package/dist/components/catalyst-ui/prompt/full-conversation.tsx +76 -0
- package/dist/components/catalyst-ui/prompt/image.tsx +94 -0
- package/dist/components/catalyst-ui/prompt/index.ts +46 -0
- package/dist/components/catalyst-ui/prompt/input-byok.tsx +70 -0
- package/dist/components/catalyst-ui/prompt/jsx-preview.tsx +81 -0
- package/dist/components/catalyst-ui/prompt/loader.tsx +497 -0
- package/dist/components/catalyst-ui/prompt/markdown.tsx +117 -0
- package/dist/components/catalyst-ui/prompt/pre-prompts.tsx +59 -0
- package/dist/components/catalyst-ui/prompt/prompt-autocomplete-highlight.tsx +81 -0
- package/dist/components/catalyst-ui/prompt/prompt-chat-container-basic.tsx +98 -0
- package/dist/components/catalyst-ui/prompt/prompt-chat-container-streaming.tsx +132 -0
- package/dist/components/catalyst-ui/prompt/prompt-chat-container.tsx +65 -0
- package/dist/components/catalyst-ui/prompt/prompt-feedback-bar.tsx +79 -0
- package/dist/components/catalyst-ui/prompt/prompt-input-actions.tsx +100 -0
- package/dist/components/catalyst-ui/prompt/prompt-input-suggestions.tsx +150 -0
- package/dist/components/catalyst-ui/prompt/prompt-input.tsx +187 -0
- package/dist/components/catalyst-ui/prompt/prompt-message.tsx +109 -0
- package/dist/components/catalyst-ui/prompt/prompt-suggestion.tsx +116 -0
- package/dist/components/catalyst-ui/prompt/providers.tsx +540 -0
- package/dist/components/catalyst-ui/prompt/reasoning.tsx +168 -0
- package/dist/components/catalyst-ui/prompt/response-stream.tsx +392 -0
- package/dist/components/catalyst-ui/prompt/scroll-button.tsx +39 -0
- package/dist/components/catalyst-ui/prompt/sidebar-chat-history.tsx +242 -0
- package/dist/components/catalyst-ui/prompt/snippets.tsx +1378 -0
- package/dist/components/catalyst-ui/prompt/source.tsx +127 -0
- package/dist/components/catalyst-ui/prompt/steps.tsx +111 -0
- package/dist/components/catalyst-ui/prompt/system-message.tsx +131 -0
- package/dist/components/catalyst-ui/prompt/tool-calling.tsx +236 -0
- package/dist/components/catalyst-ui/prompt/tool.tsx +204 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/NotificationMenu.tsx +120 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/Tree.tsx +53 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/active-toc.tsx +213 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/analog-clock.tsx +211 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/app-sidebar.tsx +339 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/blog-sidebar.tsx +39 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/calendars.tsx +58 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/date-picker.tsx +12 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/dev-list-sidebar.tsx +195 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/digital-clock.tsx +343 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/index.ts +41 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/loading-sidebar.tsx +42 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-actions.tsx +122 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-appointments.tsx +429 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-auto-search.tsx +314 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-favorites.tsx +71 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-header.tsx +409 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-main.tsx +1583 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-messenger.tsx +440 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-projects.tsx +66 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-quick-actions.tsx +366 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-secondary.tsx +33 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-shopping-cart.tsx +231 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-shopping-cartCatlstui.tsx +196 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-tree-view.tsx +18 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-user.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/nav-workspaces.tsx +69 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/navigation-theme-selector.tsx +143 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/opt-in-form.tsx +29 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/search-command.tsx +32 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/search-form.tsx +21 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/settings-menu.tsx +35 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/sidebar-dialog.tsx +82 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/site-header.tsx +40 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/team-switcher.tsx +68 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/toc.tsx +301 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/user-menu.tsx +77 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/version-switcher.tsx +49 -0
- package/dist/components/catalyst-ui/sidebars/nav-components/wishlist.tsx +292 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-01/AppSidebar.tsx +36 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-01/SearchForm.tsx +24 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-01/VersionSwitcher.tsx +49 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-01/index.tsx +270 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-01/sidebar-01.tsx +178 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-02/AppSidebar.tsx +56 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-02/SearchForm.tsx +24 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-02/VersionSwitcher.tsx +44 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-02/index.tsx +301 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-02/sidebar-02.tsx +193 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-03/AppSidebar.tsx +54 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-03/index.tsx +238 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-03/sidebar-03.tsx +189 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-04/AppSidebar.tsx +58 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-04/index.tsx +249 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-04/sidebar-04.tsx +201 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-05/AppSidebar.tsx +70 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-05/SearchForm.tsx +25 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-05/index.tsx +275 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-05/sidebar-05.tsx +191 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-06/AppSidebar.tsx +43 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-06/NavMain.tsx +56 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-06/SidebarOptInForm.tsx +34 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-06/index.tsx +290 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-06/sidebar-06.tsx +183 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/AppSidebar.tsx +28 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/NavMain.tsx +57 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/NavProjects.tsx +67 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/NavUser.tsx +86 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/TeamSwitcher.tsx +74 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/index.tsx +474 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-07/sidebar-07.tsx +189 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/AppSidebar.tsx +41 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/NavMain.tsx +62 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/NavProjects.tsx +68 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/NavSecondary.tsx +35 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/NavUser.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/index.tsx +446 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-08/sidebar-08.tsx +181 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-09/AppSidebar.tsx +213 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-09/NavUser.tsx +88 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-09/index.tsx +468 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-09/sidebar-09.tsx +177 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/AppSidebar.tsx +28 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/NavActions.tsx +59 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/NavFavorites.tsx +74 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/NavMain.tsx +31 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/NavSecondary.tsx +37 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/NavWorkspaces.tsx +70 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/TeamSwitcher.tsx +70 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/index.tsx +675 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-10/sidebar-10.tsx +348 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-11/AppSidebar.tsx +46 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-11/Tree.tsx +49 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-11/index.tsx +175 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-11/sidebar-11.tsx +102 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/AppSidebar.tsx +32 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/Calendars.tsx +57 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/DatePicker.tsx +13 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/NavUser.tsx +85 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/index.tsx +237 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-12/sidebar-12.tsx +68 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-13/SettingsDialog.tsx +82 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-13/index.tsx +105 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-13/sidebar-13.tsx +24 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-14/AppSidebar.tsx +45 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-14/index.tsx +225 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-14/sidebar-14.tsx +186 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/Calendars.tsx +83 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/DatePicker.tsx +39 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/NavFavorites.tsx +98 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/NavMain.tsx +29 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/NavSecondary.tsx +36 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/NavUser.tsx +89 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/NavWorkspaces.tsx +95 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/SidebarLeft.tsx +28 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/SidebarRight.tsx +38 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/TeamSwitcher.tsx +89 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/index.tsx +776 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-15/sidebar-15.tsx +324 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/AppSidebar.tsx +50 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/NavUser.tsx +100 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/SearchForm.tsx +35 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/SiteHeader.tsx +51 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/index.tsx +424 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-16/sidebar-16.tsx +188 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-17/AppSidebar.tsx +154 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-17/ShoppingCartSidebar.tsx +163 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-17/index.tsx +557 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-17/sidebar-17.tsx +183 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-18/AppSidebar.tsx +32 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-18/NavTreeView.tsx +18 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-18/index.tsx +120 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-18/sidebar-18.tsx +92 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-19/AppSidebar.tsx +230 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-19/index.tsx +264 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-19/sidebar-19.tsx +59 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-20/AppSidebar.tsx +215 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-20/index.tsx +250 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-20/sidebar-20.tsx +44 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-21/AppSidebar.tsx +303 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-21/LoadingSidebar.tsx +41 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-21/index.tsx +412 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-21/sidebar-21.tsx +75 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-22/AppSidebar.tsx +184 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-22/LoadingSidebar.tsx +45 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-22/index.tsx +251 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-22/sidebar-22.tsx +44 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-24/NavUser.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-24/calendars-24.tsx +58 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-24/date-picker-24.tsx +12 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-24/sidebar-24.tsx +39 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/AppSidebar.tsx +24 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/NavMain.tsx +57 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/NavSecondary.tsx +35 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/NavUser.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/SearchForm.tsx +35 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/SiteHeader.tsx +19 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/index.tsx +172 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-25/sidebar-25.tsx +153 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-26/app-sidebar-26.tsx +344 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-26/index.tsx +78 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-26/sidebar-26.tsx +78 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-26/use-mobile-26.ts +19 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-27/sidebar-27.tsx +5 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/app-sidebar-28.tsx +285 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/index.tsx +31 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/nav-user-28.tsx +88 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/search-form-28.tsx +23 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/sidebar-28.tsx +32 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/site-header-28.tsx +29 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-28/use-mobile-28.ts +19 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-left-icon.tsx +101 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-left.tsx +88 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-right-icon.tsx +106 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/ds-right.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/nav-user.tsx +74 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/settings-dialog.tsx +91 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/sidebar-29.tsx +204 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-29/version-switcher.tsx +52 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-30/ds-left.tsx +678 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-30/ds-right.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-30/settings-dialog.tsx +91 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-30/sidebar-30.tsx +604 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/ds-left.tsx +431 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/message.tsx +28 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/nav-auto-search.tsx +310 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/nav-search-command.tsx +0 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/nav-user.tsx +74 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/sidebar-31.tsx +369 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-31/typing-message.tsx +12 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-32/ds-left.tsx +119 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-32/ds-right.tsx +87 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-32/settings-dialog.tsx +91 -0
- package/dist/components/catalyst-ui/sidebars/sidebar-32/sidebar-32.tsx +119 -0
- package/dist/components/catalyst-ui/sidebars/variants/dual-sidebar-agnostic.tsx +3473 -0
- package/dist/components/catalyst-ui/sidebars/variants/sidebar-original.tsx +714 -0
- package/dist/components/catalyst-ui/sidebars/variants/sidebar-right.tsx +823 -0
- package/dist/components/catalyst-ui/sidebars/variants/sidebar-stylistic-default.tsx +591 -0
- package/dist/components/catalyst-ui/table/catalyst-table/column-header-simple.tsx +60 -0
- package/dist/components/catalyst-ui/table/catalyst-table/column-header.tsx +223 -0
- package/dist/components/catalyst-ui/table/catalyst-table/draggable-header.tsx +58 -0
- package/dist/components/catalyst-ui/table/catalyst-table/faceted-filter.tsx +131 -0
- package/dist/components/catalyst-ui/table/catalyst-table/global-search.tsx +0 -0
- package/dist/components/catalyst-ui/table/catalyst-table/row-actions.tsx +49 -0
- package/dist/components/catalyst-ui/table/catalyst-table/table.tsx +421 -0
- package/dist/components/catalyst-ui/table/index.ts +14 -0
- package/dist/components/catalyst-ui/table/props-table.tsx +170 -0
- package/dist/components/catalyst-ui/table/small-table.tsx +719 -0
- package/dist/components/catalyst-ui/table/table-1.tsx +246 -0
- package/dist/components/catalyst-ui/themeStudio/config.tsx +83 -0
- package/dist/components/catalyst-ui/themeStudio/dual-sidebar.tsx +3256 -0
- package/dist/components/catalyst-ui/themeStudio/theme-provider.tsx +269 -0
- package/dist/components/catalyst-ui/themeStudio/use-color-theme.tsx +1614 -0
- package/dist/components/catalyst-ui/themeStudio/use-color-wheel.tsx +904 -0
- package/dist/components/catalyst-ui/tools/Demo/md-render-genie.tsx +273 -0
- package/dist/components/catalyst-ui/tools/GandalfBot.tsx +144 -0
- package/dist/components/catalyst-ui/tools/MdFileTreeExplorer.tsx +287 -0
- package/dist/components/catalyst-ui/tools/accessibility-checker.tsx +370 -0
- package/dist/components/catalyst-ui/tools/animation-builder.tsx +350 -0
- package/dist/components/catalyst-ui/tools/api-response.tsx +318 -0
- package/dist/components/catalyst-ui/tools/chart-playground.tsx +480 -0
- package/dist/components/catalyst-ui/tools/code-carousel.tsx +246 -0
- package/dist/components/catalyst-ui/tools/code-diff.tsx +274 -0
- package/dist/components/catalyst-ui/tools/code-editor.tsx +35 -0
- package/dist/components/catalyst-ui/tools/code-highlight-plugin.tsx +25 -0
- package/dist/components/catalyst-ui/tools/color-converter.tsx +413 -0
- package/dist/components/catalyst-ui/tools/color-wheel.tsx +1012 -0
- package/dist/components/catalyst-ui/tools/components-reel.tsx +135 -0
- package/dist/components/catalyst-ui/tools/convert/converter.tsx +969 -0
- package/dist/components/catalyst-ui/tools/convert/sidebar-converter.tsx +132 -0
- package/dist/components/catalyst-ui/tools/cron-expression-builder.tsx +346 -0
- package/dist/components/catalyst-ui/tools/dual-editor.tsx +240 -0
- package/dist/components/catalyst-ui/tools/editor.tsx +1744 -0
- package/dist/components/catalyst-ui/tools/examples.tsx +1206 -0
- package/dist/components/catalyst-ui/tools/flexbox-sandbox.tsx +327 -0
- package/dist/components/catalyst-ui/tools/function-theater.tsx +93 -0
- package/dist/components/catalyst-ui/tools/grid-sandbox.tsx +464 -0
- package/dist/components/catalyst-ui/tools/icons.tsx +249 -0
- package/dist/components/catalyst-ui/tools/index.ts +59 -0
- package/dist/components/catalyst-ui/tools/json-Formatter.tsx +258 -0
- package/dist/components/catalyst-ui/tools/layout-generator.tsx +237 -0
- package/dist/components/catalyst-ui/tools/lexical-editor.tsx +218 -0
- package/dist/components/catalyst-ui/tools/live-playground.tsx +1458 -0
- package/dist/components/catalyst-ui/tools/lorem-ipsum-generator.tsx +314 -0
- package/dist/components/catalyst-ui/tools/md-badge-builder.tsx +179 -0
- package/dist/components/catalyst-ui/tools/md-cheat-sheet.tsx +5557 -0
- package/dist/components/catalyst-ui/tools/md-editor.tsx +632 -0
- package/dist/components/catalyst-ui/tools/md-render-genie.tsx +1233 -0
- package/dist/components/catalyst-ui/tools/md-renderer.tsx +61 -0
- package/dist/components/catalyst-ui/tools/monaco-sidebar.tsx +7791 -0
- package/dist/components/catalyst-ui/tools/monaco.tsx +492 -0
- package/dist/components/catalyst-ui/tools/motion-sandbox.tsx +0 -0
- package/dist/components/catalyst-ui/tools/qr-code-generator.tsx +432 -0
- package/dist/components/catalyst-ui/tools/regex-tester.tsx +508 -0
- package/dist/components/catalyst-ui/tools/responsive-preview.tsx +286 -0
- package/dist/components/catalyst-ui/tools/rich-text-editor copy.tsx +1058 -0
- package/dist/components/catalyst-ui/tools/rich-text-editor.tsx +1994 -0
- package/dist/components/catalyst-ui/tools/rte.md +119 -0
- package/dist/components/catalyst-ui/tools/sandbox.tsx +52 -0
- package/dist/components/catalyst-ui/tools/scripts-viewer.tsx +215 -0
- package/dist/components/catalyst-ui/tools/scripts.edit.tsx +3102 -0
- package/dist/components/catalyst-ui/tools/table-plugin.tsx +149 -0
- package/dist/components/catalyst-ui/tools/tailwind-converter.tsx +502 -0
- package/dist/components/catalyst-ui/tools/terminal.tsx +60 -0
- package/dist/components/catalyst-ui/tools/theme-builder.tsx +5071 -0
- package/dist/components/catalyst-ui/tools/toolbar-plugin.tsx +383 -0
- package/dist/components/catalyst-ui/tools/toolbar-plugin1.tsx +861 -0
- package/dist/components/catalyst-ui/tools/typography-tester.tsx +310 -0
- package/dist/components/catalyst-ui/tools/uuid-hash-generator.tsx +534 -0
- package/dist/components/catalyst-ui/tools/vscode-cmds.tsx +3813 -0
- package/dist/components/catalyst-ui/tools/x-viewer.tsx +135 -0
- package/dist/components/catalyst-ui/typography/animated-glitch-text.tsx +188 -0
- package/dist/components/catalyst-ui/typography/b.tsx +23 -0
- package/dist/components/catalyst-ui/typography/blockquote.tsx +35 -0
- package/dist/components/catalyst-ui/typography/check-list.tsx +130 -0
- package/dist/components/catalyst-ui/typography/code.tsx +26 -0
- package/dist/components/catalyst-ui/typography/comic-text.tsx +68 -0
- package/dist/components/catalyst-ui/typography/display-code.tsx +148 -0
- package/dist/components/catalyst-ui/typography/div.tsx +20 -0
- package/dist/components/catalyst-ui/typography/dynamic-text.tsx +149 -0
- package/dist/components/catalyst-ui/typography/encrypted-text.tsx +168 -0
- package/dist/components/catalyst-ui/typography/glitch-text.tsx +174 -0
- package/dist/components/catalyst-ui/typography/h1.tsx +19 -0
- package/dist/components/catalyst-ui/typography/h2.tsx +19 -0
- package/dist/components/catalyst-ui/typography/h3.tsx +19 -0
- package/dist/components/catalyst-ui/typography/h4.tsx +19 -0
- package/dist/components/catalyst-ui/typography/h5.tsx +19 -0
- package/dist/components/catalyst-ui/typography/highlight-1.tsx +133 -0
- package/dist/components/catalyst-ui/typography/highlight.tsx +133 -0
- package/dist/components/catalyst-ui/typography/hyper-text.tsx +135 -0
- package/dist/components/catalyst-ui/typography/i.tsx +23 -0
- package/dist/components/catalyst-ui/typography/ib.tsx +24 -0
- package/dist/components/catalyst-ui/typography/index.ts +49 -0
- package/dist/components/catalyst-ui/typography/line-shadow-text.tsx +44 -0
- package/dist/components/catalyst-ui/typography/matrix-text.tsx +186 -0
- package/dist/components/catalyst-ui/typography/ordered-list.tsx +39 -0
- package/dist/components/catalyst-ui/typography/p.tsx +19 -0
- package/dist/components/catalyst-ui/typography/paragraph-scramble.tsx +122 -0
- package/dist/components/catalyst-ui/typography/pm.tsx +20 -0
- package/dist/components/catalyst-ui/typography/prose.tsx +90 -0
- package/dist/components/catalyst-ui/typography/scroll-text.tsx +181 -0
- package/dist/components/catalyst-ui/typography/shimmer-text.tsx +105 -0
- package/dist/components/catalyst-ui/typography/sliced-text.tsx +131 -0
- package/dist/components/catalyst-ui/typography/swoosh-text.tsx +111 -0
- package/dist/components/catalyst-ui/typography/text-animate.tsx +380 -0
- package/dist/components/catalyst-ui/typography/text-highlighter.tsx +101 -0
- package/dist/components/catalyst-ui/typography/text-morph.tsx +272 -0
- package/dist/components/catalyst-ui/typography/text-reveal.tsx +71 -0
- package/dist/components/catalyst-ui/typography/text-rewind.tsx +90 -0
- package/dist/components/catalyst-ui/typography/text-scramble.tsx +111 -0
- package/dist/components/catalyst-ui/typography/text.tsx +134 -0
- package/dist/components/catalyst-ui/typography/typewriter.tsx +153 -0
- package/dist/components/catalyst-ui/typography/typing-animation.tsx +172 -0
- package/dist/components/catalyst-ui/typography/typography.tsx +67 -0
- package/dist/components/catalyst-ui/typography/unordered-list.tsx +78 -0
- package/dist/components/catalyst-ui/typography/video-text.tsx +86 -0
- package/dist/components/catalyst-ui/typography/word-rotate.tsx +48 -0
- package/dist/components/catalyst-ui/utils/auth-provider.tsx +419 -0
- package/dist/components/catalyst-ui/utils/auth.github.callback.tsx +135 -0
- package/dist/components/catalyst-ui/utils/auth.github.tsx +17 -0
- package/dist/components/catalyst-ui/utils/auth.ts +34 -0
- package/dist/components/catalyst-ui/utils/auth_github.ts +48 -0
- package/dist/components/catalyst-ui/utils/auth_session.ts +70 -0
- package/dist/components/catalyst-ui/utils/batcher.tsx +50 -0
- package/dist/components/catalyst-ui/utils/build-package-json.js +89 -0
- package/dist/components/catalyst-ui/utils/cache-assets.ts +72 -0
- package/dist/components/catalyst-ui/utils/client-only-mermaid.tsx +82 -0
- package/dist/components/catalyst-ui/utils/client-only.tsx +27 -0
- package/dist/components/catalyst-ui/utils/cors.ts +178 -0
- package/dist/components/catalyst-ui/utils/crypto.ts +96 -0
- package/dist/components/catalyst-ui/utils/dbLocal.js +74 -0
- package/dist/components/catalyst-ui/utils/dbRemote.js +74 -0
- package/dist/components/catalyst-ui/utils/demo.tsx +499 -0
- package/dist/components/catalyst-ui/utils/dynamic-links.tsx +324 -0
- package/dist/components/catalyst-ui/utils/event-stream.ts +82 -0
- package/dist/components/catalyst-ui/utils/existing-search-params.tsx +78 -0
- package/dist/components/catalyst-ui/utils/external-scripts.tsx +144 -0
- package/dist/components/catalyst-ui/utils/fetcher-context.tsx +45 -0
- package/dist/components/catalyst-ui/utils/fetcher-type.tsx +82 -0
- package/dist/components/catalyst-ui/utils/filename-icon-map.tsx +176 -0
- package/dist/components/catalyst-ui/utils/flickering-grid.tsx +188 -0
- package/dist/components/catalyst-ui/utils/get-client-ip-address.ts +52 -0
- package/dist/components/catalyst-ui/utils/get-client-locales.ts +25 -0
- package/dist/components/catalyst-ui/utils/get-headers.ts +7 -0
- package/dist/components/catalyst-ui/utils/honeypot-react.tsx +480 -0
- package/dist/components/catalyst-ui/utils/honeypot.ts +138 -0
- package/dist/components/catalyst-ui/utils/index.ts +82 -0
- package/dist/components/catalyst-ui/utils/is-prefetch.ts +19 -0
- package/dist/components/catalyst-ui/utils/json-hash.ts +33 -0
- package/dist/components/catalyst-ui/utils/keyboard-shortcut.tsx +124 -0
- package/dist/components/catalyst-ui/utils/named-action.ts +50 -0
- package/dist/components/catalyst-ui/utils/navigation-context.tsx +71 -0
- package/dist/components/catalyst-ui/utils/options.ts +20 -0
- package/dist/components/catalyst-ui/utils/otp-auth-session.ts +14 -0
- package/dist/components/catalyst-ui/utils/otp-client-auth.tsx +30 -0
- package/dist/components/catalyst-ui/utils/otp-email.tsx +104 -0
- package/dist/components/catalyst-ui/utils/parse-accept-header.ts +21 -0
- package/dist/components/catalyst-ui/utils/preload-route-assets.ts +60 -0
- package/dist/components/catalyst-ui/utils/prisma.ts +93 -0
- package/dist/components/catalyst-ui/utils/promise.ts +55 -0
- package/dist/components/catalyst-ui/utils/qr-code-1-server.tsx +42 -0
- package/dist/components/catalyst-ui/utils/qr-code-1.tsx +87 -0
- package/dist/components/catalyst-ui/utils/redirect-back.ts +35 -0
- package/dist/components/catalyst-ui/utils/redirect-bad-requests.tsx +5 -0
- package/dist/components/catalyst-ui/utils/remix-auth.ts +35 -0
- package/dist/components/catalyst-ui/utils/remix_auth_session.ts +71 -0
- package/dist/components/catalyst-ui/utils/respond-to.ts +40 -0
- package/dist/components/catalyst-ui/utils/responses.ts +130 -0
- package/dist/components/catalyst-ui/utils/rolling-cookie.tsx +39 -0
- package/dist/components/catalyst-ui/utils/safe-redirect.ts +21 -0
- package/dist/components/catalyst-ui/utils/scaffolding.tsx +14 -0
- package/dist/components/catalyst-ui/utils/scroll-top.tsx +382 -0
- package/dist/components/catalyst-ui/utils/scroll-x.tsx +22 -0
- package/dist/components/catalyst-ui/utils/scroll-xy.tsx +22 -0
- package/dist/components/catalyst-ui/utils/scroll-y.tsx +14 -0
- package/dist/components/catalyst-ui/utils/scroll.tsx +32 -0
- package/dist/components/catalyst-ui/utils/sec-fetch-parser.tsx +119 -0
- package/dist/components/catalyst-ui/utils/sec-fetch-parsers.tsx +42 -0
- package/dist/components/catalyst-ui/utils/server-only.tsx +12 -0
- package/dist/components/catalyst-ui/utils/singleton.tsx +22 -0
- package/dist/components/catalyst-ui/utils/style-provider.tsx +292 -0
- package/dist/components/catalyst-ui/utils/tailwindcss.css.txt +134 -0
- package/dist/components/catalyst-ui/utils/typed-cookie.ts +90 -0
- package/dist/components/catalyst-ui/utils/typed-session.ts +115 -0
- package/dist/components/catalyst-ui/utils/user-based-access-rules.tsx +118 -0
- package/dist/components/catalyst-ui/x/index.ts +38 -0
- package/dist/components/catalyst-ui/x/input-x.tsx +2263 -0
- package/dist/components/catalyst-ui/x/nav-x.tsx +3213 -0
- package/dist/components/catalyst-ui/x/tracker-x.tsx +2 -12
- package/dist/index.js +40623 -40650
- package/package.json +1 -1
- /package/dist/{data.tsx → components/catalyst-ui/data.tsx} +0 -0
- /package/dist/components/catalyst-ui/x/{button-X.tsx → button-x.tsx} +0 -0
|
@@ -0,0 +1,3813 @@
|
|
|
1
|
+
import React, { useState, useMemo } from "react"
|
|
2
|
+
import { MotionSearchBar, MotionSearchBarInput, MotionSearchBarList, MotionSearchBarEmpty, MotionSearchBarGroup, MotionSearchBarItem, MotionSearchBarSeparator, useCopyToClipboard, CopyText } from "~/components/catalyst-ui";
|
|
3
|
+
import { Code2, Settings, FileText, GitBranch, Search, Terminal, Layout, Palette, Play, Bug, CheckIcon, CopyIcon, ChevronRight, Folder } from "lucide-react"
|
|
4
|
+
import Fuse from "fuse.js"
|
|
5
|
+
import { AnimatePresence, motion } from "motion/react"
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
const categoryIcons = {
|
|
12
|
+
"Settings": <Settings className="h-4 w-4" />,
|
|
13
|
+
"File": <FileText className="h-4 w-4" />,
|
|
14
|
+
"Editor": <Code2 className="h-4 w-4" />,
|
|
15
|
+
"Command Palette": <Terminal className="h-4 w-4" />,
|
|
16
|
+
"Terminal": <Terminal className="h-4 w-4" />,
|
|
17
|
+
"Git": <GitBranch className="h-4 w-4" />,
|
|
18
|
+
"Debug": <Bug className="h-4 w-4" />,
|
|
19
|
+
"View": <Layout className="h-4 w-4" />,
|
|
20
|
+
"Preferences": <Palette className="h-4 w-4" />,
|
|
21
|
+
"Tasks": <Play className="h-4 w-4" />,
|
|
22
|
+
"Search": <Search className="h-4 w-4" />,
|
|
23
|
+
"Extensions": <Code2 className="h-4 w-4" />,
|
|
24
|
+
"Editor Layout": <Layout className="h-4 w-4" />,
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const topCategories = ["Editor", "File", "Terminal", "Git", "Debug", "View"]
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
// Undo/Redo Commands
|
|
33
|
+
const undoRedoCommands = [
|
|
34
|
+
{ "command": "undo", "title": "Undo", "description": "Undo the last operation", "category": "Undo/Redo" },
|
|
35
|
+
{ "command": "default:undo", "title": "Default: Undo", "description": "Default undo command", "category": "Undo/Redo" },
|
|
36
|
+
{ "command": "redo", "title": "Redo", "description": "Redo the last undone operation", "category": "Undo/Redo" },
|
|
37
|
+
{ "command": "default:redo", "title": "Default: Redo", "description": "Default redo command", "category": "Undo/Redo" },
|
|
38
|
+
{ "command": "cursorUndo", "title": "Cursor Undo", "description": "Undo cursor operation", "category": "Undo/Redo" },
|
|
39
|
+
{ "command": "cursorRedo", "title": "Cursor Redo", "description": "Redo cursor operation", "category": "Undo/Redo" }
|
|
40
|
+
];
|
|
41
|
+
|
|
42
|
+
// Selection Commands
|
|
43
|
+
const selectionCommands = [
|
|
44
|
+
{ "command": "editor.action.selectAll", "title": "Select All", "description": "Select all text", "category": "Selection" },
|
|
45
|
+
{ "command": "columnSelect", "title": "Column Select", "description": "Column (box) selection mode", "category": "Selection" },
|
|
46
|
+
{ "command": "cursorColumnSelectLeft", "title": "Column Select Left", "description": "Select column to the left", "category": "Selection" },
|
|
47
|
+
{ "command": "cursorColumnSelectRight", "title": "Column Select Right", "description": "Select column to the right", "category": "Selection" },
|
|
48
|
+
{ "command": "cursorColumnSelectUp", "title": "Column Select Up", "description": "Select column upward", "category": "Selection" },
|
|
49
|
+
{ "command": "cursorColumnSelectPageUp", "title": "Column Select Page Up", "description": "Select column page up", "category": "Selection" },
|
|
50
|
+
{ "command": "cursorColumnSelectDown", "title": "Column Select Down", "description": "Select column downward", "category": "Selection" },
|
|
51
|
+
{ "command": "cursorColumnSelectPageDown", "title": "Column Select Page Down", "description": "Select column page down", "category": "Selection" },
|
|
52
|
+
{ "command": "cursorLeftSelect", "title": "Cursor Left Select", "description": "Select character to the left", "category": "Selection" },
|
|
53
|
+
{ "command": "cursorRightSelect", "title": "Cursor Right Select", "description": "Select character to the right", "category": "Selection" },
|
|
54
|
+
{ "command": "cursorUpSelect", "title": "Cursor Up Select", "description": "Select line upward", "category": "Selection" },
|
|
55
|
+
{ "command": "cursorUpSelect", "title": "Cursor Up Select", "description": "Select line upward", "category": "Selection" },
|
|
56
|
+
{ "command": "cursorPageUpSelect", "title": "Cursor Page Up Select", "description": "Select page upward", "category": "Selection" },
|
|
57
|
+
{ "command": "cursorDownSelect", "title": "Cursor Down Select", "description": "Select line downward", "category": "Selection" },
|
|
58
|
+
{ "command": "cursorPageDownSelect", "title": "Cursor Page Down Select", "description": "Select page downward", "category": "Selection" },
|
|
59
|
+
{ "command": "cursorHomeSelect", "title": "Cursor Home Select", "description": "Select to beginning of line", "category": "Selection" },
|
|
60
|
+
{ "command": "cursorLineStartSelect", "title": "Cursor Line Start Select", "description": "Select to start of line", "category": "Selection" },
|
|
61
|
+
{ "command": "cursorEndSelect", "title": "Cursor End Select", "description": "Select to end of line", "category": "Selection" },
|
|
62
|
+
{ "command": "cursorLineEndSelect", "title": "Cursor Line End Select", "description": "Select to end of line", "category": "Selection" },
|
|
63
|
+
{ "command": "cursorTopSelect", "title": "Cursor Top Select", "description": "Select to top of document", "category": "Selection" },
|
|
64
|
+
{ "command": "cursorBottomSelect", "title": "Cursor Bottom Select", "description": "Select to bottom of document", "category": "Selection" },
|
|
65
|
+
{ "command": "lastCursorWordSelect", "title": "Last Cursor Word Select", "description": "Select last word at cursor", "category": "Selection" },
|
|
66
|
+
{ "command": "lastCursorLineSelect", "title": "Last Cursor Line Select", "description": "Select last line at cursor", "category": "Selection" },
|
|
67
|
+
{ "command": "lastCursorLineSelectDrag", "title": "Last Cursor Line Select Drag", "description": "Drag select last line", "category": "Selection" },
|
|
68
|
+
{ "command": "editor.action.setSelectionAnchor", "title": "Set Selection Anchor", "description": "Set selection anchor point", "category": "Selection" },
|
|
69
|
+
{ "command": "editor.action.selectFromAnchorToCursor", "title": "Select From Anchor to Cursor", "description": "Select from anchor to cursor", "category": "Selection" },
|
|
70
|
+
{ "command": "editor.action.selectToBracket", "title": "Select to Bracket", "description": "Select content to matching bracket", "category": "Selection" },
|
|
71
|
+
{ "command": "editor.action.addSelectionToNextFindMatch", "title": "Add Selection to Next Find Match", "description": "Add another cursor at next match", "category": "Selection" },
|
|
72
|
+
{ "command": "editor.action.addSelectionToPreviousFindMatch", "title": "Add Selection to Previous Find Match", "description": "Add another cursor at previous match", "category": "Selection" },
|
|
73
|
+
{ "command": "editor.action.selectHighlights", "title": "Select Highlights", "description": "Select all highlighted matches", "category": "Selection" },
|
|
74
|
+
{ "command": "editor.action.selectAllMatches", "title": "Select All Matches", "description": "Select all matching text", "category": "Selection" },
|
|
75
|
+
{ "command": "editor.action.smartSelect.grow", "title": "Grow Smart Selection", "description": "Expand smart selection", "category": "Selection" },
|
|
76
|
+
{ "command": "editor.action.smartSelect.expand", "title": "Expand Smart Selection", "description": "Expand selection context", "category": "Selection" },
|
|
77
|
+
{ "command": "editor.action.smartSelect.shrink", "title": "Shrink Smart Selection", "description": "Shrink smart selection", "category": "Selection" },
|
|
78
|
+
{ "command": "cursorWordStartLeftSelect", "title": "Cursor Word Start Left Select", "description": "Select to start of word left", "category": "Selection" },
|
|
79
|
+
{ "command": "cursorWordEndLeftSelect", "title": "Cursor Word End Left Select", "description": "Select to end of word left", "category": "Selection" },
|
|
80
|
+
{ "command": "cursorWordLeftSelect", "title": "Cursor Word Left Select", "description": "Select word to the left", "category": "Selection" },
|
|
81
|
+
{ "command": "cursorWordStartRightSelect", "title": "Cursor Word Start Right Select", "description": "Select to start of word right", "category": "Selection" },
|
|
82
|
+
{ "command": "cursorWordEndRightSelect", "title": "Cursor Word End Right Select", "description": "Select to end of word right", "category": "Selection" },
|
|
83
|
+
{ "command": "cursorWordRightSelect", "title": "Cursor Word Right Select", "description": "Select word to the right", "category": "Selection" },
|
|
84
|
+
{ "command": "cursorWordAccessibilityLeftSelect", "title": "Cursor Word Accessibility Left Select", "description": "Accessibility: select word left", "category": "Selection" },
|
|
85
|
+
{ "command": "cursorWordAccessibilityRightSelect", "title": "Cursor Word Accessibility Right Select", "description": "Accessibility: select word right", "category": "Selection" },
|
|
86
|
+
{ "command": "cursorWordPartStartLeftSelect", "title": "Cursor Word Part Start Left Select", "description": "Select word part start left", "category": "Selection" },
|
|
87
|
+
{ "command": "cursorWordPartLeftSelect", "title": "Cursor Word Part Left Select", "description": "Select word part left", "category": "Selection" },
|
|
88
|
+
{ "command": "cursorWordPartRightSelect", "title": "Cursor Word Part Right Select", "description": "Select word part right", "category": "Selection" }
|
|
89
|
+
];
|
|
90
|
+
|
|
91
|
+
// Cursor Movement Commands
|
|
92
|
+
const cursorCommands = [
|
|
93
|
+
{ "command": "cursorMove", "title": "Cursor Move", "description": "Generic cursor movement", "category": "Cursor Movement" },
|
|
94
|
+
{ "command": "cursorLeft", "title": "Cursor Left", "description": "Move cursor left", "category": "Cursor Movement" },
|
|
95
|
+
{ "command": "cursorRight", "title": "Cursor Right", "description": "Move cursor right", "category": "Cursor Movement" },
|
|
96
|
+
{ "command": "cursorUp", "title": "Cursor Up", "description": "Move cursor up", "category": "Cursor Movement" },
|
|
97
|
+
{ "command": "cursorPageUp", "title": "Cursor Page Up", "description": "Move cursor page up", "category": "Cursor Movement" },
|
|
98
|
+
{ "command": "cursorDown", "title": "Cursor Down", "description": "Move cursor down", "category": "Cursor Movement" },
|
|
99
|
+
{ "command": "cursorPageDown", "title": "Cursor Page Down", "description": "Move cursor page down", "category": "Cursor Movement" },
|
|
100
|
+
{ "command": "createCursor", "title": "Create Cursor", "description": "Create additional cursor", "category": "Cursor Movement" },
|
|
101
|
+
{ "command": "cursorHome", "title": "Cursor Home", "description": "Move to beginning of line", "category": "Cursor Movement" },
|
|
102
|
+
{ "command": "cursorLineStart", "title": "Cursor Line Start", "description": "Move to start of line", "category": "Cursor Movement" },
|
|
103
|
+
{ "command": "cursorEnd", "title": "Cursor End", "description": "Move to end of line", "category": "Cursor Movement" },
|
|
104
|
+
{ "command": "cursorLineEnd", "title": "Cursor Line End", "description": "Move to end of line", "category": "Cursor Movement" },
|
|
105
|
+
{ "command": "cursorTop", "title": "Cursor Top", "description": "Move to top of document", "category": "Cursor Movement" },
|
|
106
|
+
{ "command": "cursorBottom", "title": "Cursor Bottom", "description": "Move to bottom of document", "category": "Cursor Movement" },
|
|
107
|
+
{ "command": "editor.action.goToSelectionAnchor", "title": "Go to Selection Anchor", "description": "Move to selection anchor", "category": "Cursor Movement" },
|
|
108
|
+
{ "command": "editor.action.jumpToBracket", "title": "Jump to Bracket", "description": "Move to matching bracket", "category": "Cursor Movement" },
|
|
109
|
+
{ "command": "editor.action.moveCarretLeftAction", "title": "Move Caret Left", "description": "Move caret left", "category": "Cursor Movement" },
|
|
110
|
+
{ "command": "editor.action.moveCarretRightAction", "title": "Move Caret Right", "description": "Move caret right", "category": "Cursor Movement" },
|
|
111
|
+
{ "command": "editor.gotoParentFold", "title": "Go to Parent Fold", "description": "Move to parent folded region", "category": "Cursor Movement" },
|
|
112
|
+
{ "command": "editor.gotoPreviousFold", "title": "Go to Previous Fold", "description": "Move to previous folded region", "category": "Cursor Movement" },
|
|
113
|
+
{ "command": "editor.gotoNextFold", "title": "Go to Next Fold", "description": "Move to next folded region", "category": "Cursor Movement" },
|
|
114
|
+
{ "command": "cursorWordStartLeft", "title": "Cursor Word Start Left", "description": "Move to start of word left", "category": "Cursor Movement" },
|
|
115
|
+
{ "command": "cursorWordEndLeft", "title": "Cursor Word End Left", "description": "Move to end of word left", "category": "Cursor Movement" },
|
|
116
|
+
{ "command": "cursorWordLeft", "title": "Cursor Word Left", "description": "Move to word left", "category": "Cursor Movement" },
|
|
117
|
+
{ "command": "cursorWordStartRight", "title": "Cursor Word Start Right", "description": "Move to start of word right", "category": "Cursor Movement" },
|
|
118
|
+
{ "command": "cursorWordEndRight", "title": "Cursor Word End Right", "description": "Move to end of word right", "category": "Cursor Movement" },
|
|
119
|
+
{ "command": "cursorWordRight", "title": "Cursor Word Right", "description": "Move to word right", "category": "Cursor Movement" },
|
|
120
|
+
{ "command": "cursorWordAccessibilityLeft", "title": "Cursor Word Accessibility Left", "description": "Accessibility: move word left", "category": "Cursor Movement" },
|
|
121
|
+
{ "command": "cursorWordAccessibilityRight", "title": "Cursor Word Accessibility Right", "description": "Accessibility: move word right", "category": "Cursor Movement" },
|
|
122
|
+
{ "command": "cursorWordPartStartLeft", "title": "Cursor Word Part Start Left", "description": "Move to word part start left", "category": "Cursor Movement" },
|
|
123
|
+
{ "command": "cursorWordPartLeft", "title": "Cursor Word Part Left", "description": "Move to word part left", "category": "Cursor Movement" },
|
|
124
|
+
{ "command": "cursorWordPartRight", "title": "Cursor Word Part Right", "description": "Move to word part right", "category": "Cursor Movement" }
|
|
125
|
+
];
|
|
126
|
+
|
|
127
|
+
// Scroll Commands
|
|
128
|
+
const scrollCommands = [
|
|
129
|
+
{ "command": "editorScroll", "title": "Editor Scroll", "description": "Generic editor scrolling", "category": "Scrolling" },
|
|
130
|
+
{ "command": "scrollLineUp", "title": "Scroll Line Up", "description": "Scroll up one line", "category": "Scrolling" },
|
|
131
|
+
{ "command": "scrollPageUp", "title": "Scroll Page Up", "description": "Scroll up one page", "category": "Scrolling" },
|
|
132
|
+
{ "command": "scrollEditorTop", "title": "Scroll Editor Top", "description": "Scroll to top of editor", "category": "Scrolling" },
|
|
133
|
+
{ "command": "scrollLineDown", "title": "Scroll Line Down", "description": "Scroll down one line", "category": "Scrolling" },
|
|
134
|
+
{ "command": "scrollPageDown", "title": "Scroll Page Down", "description": "Scroll down one page", "category": "Scrolling" },
|
|
135
|
+
{ "command": "scrollEditorBottom", "title": "Scroll Editor Bottom", "description": "Scroll to bottom of editor", "category": "Scrolling" },
|
|
136
|
+
{ "command": "scrollLeft", "title": "Scroll Left", "description": "Scroll left", "category": "Scrolling" },
|
|
137
|
+
{ "command": "scrollRight", "title": "Scroll Right", "description": "Scroll right", "category": "Scrolling" }
|
|
138
|
+
];
|
|
139
|
+
|
|
140
|
+
// Editing Commands
|
|
141
|
+
const editingCommands = [
|
|
142
|
+
{ "command": "cancelSelection", "title": "Cancel Selection", "description": "Cancel current selection", "category": "Editing" },
|
|
143
|
+
{ "command": "removeSecondaryCursors", "title": "Remove Secondary Cursors", "description": "Remove additional cursors", "category": "Editing" },
|
|
144
|
+
{ "command": "revealLine", "title": "Reveal Line", "description": "Reveal line in viewport", "category": "Editing" },
|
|
145
|
+
{ "command": "setSelection", "title": "Set Selection", "description": "Set specific selection", "category": "Editing" },
|
|
146
|
+
{ "command": "lineBreakInsert", "title": "Insert Line Break", "description": "Insert line break", "category": "Editing" },
|
|
147
|
+
{ "command": "outdent", "title": "Outdent", "description": "Outdent line", "category": "Editing" },
|
|
148
|
+
{ "command": "tab", "title": "Tab", "description": "Insert tab", "category": "Editing" },
|
|
149
|
+
{ "command": "deleteLeft", "title": "Delete Left", "description": "Delete character to left", "category": "Editing" },
|
|
150
|
+
{ "command": "deleteRight", "title": "Delete Right", "description": "Delete character to right", "category": "Editing" },
|
|
151
|
+
{ "command": "default:type", "title": "Type", "description": "Default typing action", "category": "Editing" },
|
|
152
|
+
{ "command": "type", "title": "Type", "description": "Type characters", "category": "Editing" },
|
|
153
|
+
{ "command": "default:replacePreviousChar", "title": "Replace Previous Character", "description": "Replace previous character", "category": "Editing" },
|
|
154
|
+
{ "command": "replacePreviousChar", "title": "Replace Previous Character", "description": "Replace previous character", "category": "Editing" },
|
|
155
|
+
{ "command": "default:compositionType", "title": "Composition Type", "description": "IME composition typing", "category": "Editing" },
|
|
156
|
+
{ "command": "compositionType", "title": "Composition Type", "description": "IME composition typing", "category": "Editing" },
|
|
157
|
+
{ "command": "default:compositionStart", "title": "Composition Start", "description": "Start IME composition", "category": "Editing" },
|
|
158
|
+
{ "command": "compositionStart", "title": "Composition Start", "description": "Start IME composition", "category": "Editing" },
|
|
159
|
+
{ "command": "default:compositionEnd", "title": "Composition End", "description": "End IME composition", "category": "Editing" },
|
|
160
|
+
{ "command": "compositionEnd", "title": "Composition End", "description": "End IME composition", "category": "Editing" },
|
|
161
|
+
{ "command": "default:paste", "title": "Paste", "description": "Default paste action", "category": "Editing" },
|
|
162
|
+
{ "command": "paste", "title": "Paste", "description": "Paste from clipboard", "category": "Editing" },
|
|
163
|
+
{ "command": "default:cut", "title": "Cut", "description": "Default cut action", "category": "Editing" },
|
|
164
|
+
{ "command": "cut", "title": "Cut", "description": "Cut to clipboard", "category": "Editing" },
|
|
165
|
+
{ "command": "editor.action.removeBrackets", "title": "Remove Brackets", "description": "Remove surrounding brackets", "category": "Editing" },
|
|
166
|
+
{ "command": "editor.action.transposeLetters", "title": "Transpose Letters", "description": "Swap characters around cursor", "category": "Editing" },
|
|
167
|
+
{ "command": "editor.cancelOperation", "title": "Cancel Operation", "description": "Cancel current operation", "category": "Editing" },
|
|
168
|
+
{ "command": "leaveEditorMessage", "title": "Leave Editor Message", "description": "Leave editor message", "category": "Editing" },
|
|
169
|
+
{ "command": "deleteAllLeft", "title": "Delete All Left", "description": "Delete all characters to left", "category": "Editing" },
|
|
170
|
+
{ "command": "deleteAllRight", "title": "Delete All Right", "description": "Delete all characters to right", "category": "Editing" },
|
|
171
|
+
{ "command": "deleteWordStartLeft", "title": "Delete Word Start Left", "description": "Delete to start of word left", "category": "Editing" },
|
|
172
|
+
{ "command": "deleteWordEndLeft", "title": "Delete Word End Left", "description": "Delete to end of word left", "category": "Editing" },
|
|
173
|
+
{ "command": "deleteWordLeft", "title": "Delete Word Left", "description": "Delete word to left", "category": "Editing" },
|
|
174
|
+
{ "command": "deleteWordStartRight", "title": "Delete Word Start Right", "description": "Delete to start of word right", "category": "Editing" },
|
|
175
|
+
{ "command": "deleteWordEndRight", "title": "Delete Word End Right", "description": "Delete to end of word right", "category": "Editing" },
|
|
176
|
+
{ "command": "deleteWordRight", "title": "Delete Word Right", "description": "Delete word to right", "category": "Editing" },
|
|
177
|
+
{ "command": "deleteInsideWord", "title": "Delete Inside Word", "description": "Delete inside current word", "category": "Editing" },
|
|
178
|
+
{ "command": "deleteWordPartLeft", "title": "Delete Word Part Left", "description": "Delete word part left", "category": "Editing" },
|
|
179
|
+
{ "command": "deleteWordPartRight", "title": "Delete Word Part Right", "description": "Delete word part right", "category": "Editing" }
|
|
180
|
+
];
|
|
181
|
+
|
|
182
|
+
// Clipboard Commands
|
|
183
|
+
const clipboardCommands = [
|
|
184
|
+
{ "command": "editor.action.clipboardCutAction", "title": "Clipboard Cut", "description": "Cut to clipboard", "category": "Clipboard" },
|
|
185
|
+
{ "command": "editor.action.clipboardCopyAction", "title": "Clipboard Copy", "description": "Copy to clipboard", "category": "Clipboard" },
|
|
186
|
+
{ "command": "editor.action.clipboardPasteAction", "title": "Clipboard Paste", "description": "Paste from clipboard", "category": "Clipboard" },
|
|
187
|
+
{ "command": "editor.action.clipboardCopyWithSyntaxHighlightingAction", "title": "Copy with Syntax Highlighting", "description": "Copy with syntax highlighting", "category": "Clipboard" },
|
|
188
|
+
{ "command": "editor.changePasteType", "title": "Change Paste Type", "description": "Change how content is pasted", "category": "Clipboard" },
|
|
189
|
+
{ "command": "editor.hidePasteWidget", "title": "Hide Paste Widget", "description": "Hide paste options widget", "category": "Clipboard" },
|
|
190
|
+
{ "command": "editor.action.pasteAs", "title": "Paste As", "description": "Paste with specific formatting", "category": "Clipboard" },
|
|
191
|
+
{ "command": "editor.action.pasteAsText", "title": "Paste as Text", "description": "Paste as plain text", "category": "Clipboard" },
|
|
192
|
+
{ "command": "editor.changeDropType", "title": "Change Drop Type", "description": "Change drop behavior", "category": "Clipboard" },
|
|
193
|
+
{ "command": "editor.hideDropWidget", "title": "Hide Drop Widget", "description": "Hide drop options widget", "category": "Clipboard" }
|
|
194
|
+
];
|
|
195
|
+
|
|
196
|
+
// Find & Replace Commands
|
|
197
|
+
const findReplaceCommands = [
|
|
198
|
+
{ "command": "actions.find", "title": "Find", "description": "Open find widget", "category": "Find & Replace" },
|
|
199
|
+
{ "command": "editor.action.nextMatchFindAction", "title": "Next Match", "description": "Go to next find match", "category": "Find & Replace" },
|
|
200
|
+
{ "command": "editor.action.previousMatchFindAction", "title": "Previous Match", "description": "Go to previous find match", "category": "Find & Replace" },
|
|
201
|
+
{ "command": "editor.action.startFindReplaceAction", "title": "Find and Replace", "description": "Open find and replace", "category": "Find & Replace" },
|
|
202
|
+
{ "command": "editor.actions.findWithArgs", "title": "Find with Arguments", "description": "Find with specific arguments", "category": "Find & Replace" },
|
|
203
|
+
{ "command": "actions.findWithSelection", "title": "Find with Selection", "description": "Find selected text", "category": "Find & Replace" },
|
|
204
|
+
{ "command": "editor.action.goToMatchFindAction", "title": "Go to Match", "description": "Go to specific match", "category": "Find & Replace" },
|
|
205
|
+
{ "command": "editor.action.nextSelectionMatchFindAction", "title": "Next Selection Match", "description": "Go to next selection match", "category": "Find & Replace" },
|
|
206
|
+
{ "command": "editor.action.previousSelectionMatchFindAction", "title": "Previous Selection Match", "description": "Go to previous selection match", "category": "Find & Replace" },
|
|
207
|
+
{ "command": "closeFindWidget", "title": "Close Find Widget", "description": "Close find widget", "category": "Find & Replace" },
|
|
208
|
+
{ "command": "toggleFindCaseSensitive", "title": "Toggle Case Sensitive", "description": "Toggle case sensitivity in find", "category": "Find & Replace" },
|
|
209
|
+
{ "command": "toggleFindWholeWord", "title": "Toggle Whole Word", "description": "Toggle whole word matching", "category": "Find & Replace" },
|
|
210
|
+
{ "command": "toggleFindRegex", "title": "Toggle Regex", "description": "Toggle regular expression mode", "category": "Find & Replace" },
|
|
211
|
+
{ "command": "toggleFindInSelection", "title": "Toggle Find in Selection", "description": "Toggle search within selection", "category": "Find & Replace" },
|
|
212
|
+
{ "command": "togglePreserveCase", "title": "Toggle Preserve Case", "description": "Toggle preserve case when replacing", "category": "Find & Replace" },
|
|
213
|
+
{ "command": "editor.action.replaceOne", "title": "Replace One", "description": "Replace current match", "category": "Find & Replace" },
|
|
214
|
+
{ "command": "editor.action.replaceAll", "title": "Replace All", "description": "Replace all matches", "category": "Find & Replace" },
|
|
215
|
+
{ "command": "editor.action.moveSelectionToNextFindMatch", "title": "Move Selection to Next Match", "description": "Move selection to next match", "category": "Find & Replace" },
|
|
216
|
+
{ "command": "editor.action.moveSelectionToPreviousFindMatch", "title": "Move Selection to Previous Match", "description": "Move selection to previous match", "category": "Find & Replace" },
|
|
217
|
+
{ "command": "editor.action.changeAll", "title": "Change All", "description": "Change all occurrences", "category": "Find & Replace" },
|
|
218
|
+
{ "command": "editor.action.extensioneditor.showfind", "title": "Extension Editor: Show Find", "description": "Show find in extension editor", "category": "Find & Replace" },
|
|
219
|
+
{ "command": "editor.action.extensioneditor.findNext", "title": "Extension Editor: Find Next", "description": "Find next in extension editor", "category": "Find & Replace" },
|
|
220
|
+
{ "command": "editor.action.extensioneditor.findPrevious", "title": "Extension Editor: Find Previous", "description": "Find previous in extension editor", "category": "Find & Replace" }
|
|
221
|
+
];
|
|
222
|
+
|
|
223
|
+
// Code Actions & Refactoring
|
|
224
|
+
const codeActionCommands = [
|
|
225
|
+
{ "command": "hideCodeActionWidget", "title": "Hide Code Action Widget", "description": "Hide code action widget", "category": "Code Actions" },
|
|
226
|
+
{ "command": "selectPrevCodeAction", "title": "Select Previous Code Action", "description": "Select previous code action", "category": "Code Actions" },
|
|
227
|
+
{ "command": "selectNextCodeAction", "title": "Select Next Code Action", "description": "Select next code action", "category": "Code Actions" },
|
|
228
|
+
{ "command": "acceptSelectedCodeAction", "title": "Accept Selected Code Action", "description": "Accept selected code action", "category": "Code Actions" },
|
|
229
|
+
{ "command": "previewSelectedCodeAction", "title": "Preview Selected Code Action", "description": "Preview selected code action", "category": "Code Actions" },
|
|
230
|
+
{ "command": "editor.action.quickFix", "title": "Quick Fix", "description": "Show quick fixes", "category": "Code Actions" },
|
|
231
|
+
{ "command": "editor.action.refactor", "title": "Refactor", "description": "Show refactorings", "category": "Code Actions" },
|
|
232
|
+
{ "command": "editor.action.sourceAction", "title": "Source Action", "description": "Show source actions", "category": "Code Actions" },
|
|
233
|
+
{ "command": "editor.action.organizeImports", "title": "Organize Imports", "description": "Organize import statements", "category": "Code Actions" },
|
|
234
|
+
{ "command": "editor.action.autoFix", "title": "Auto Fix", "description": "Apply automatic fixes", "category": "Code Actions" },
|
|
235
|
+
{ "command": "editor.action.fixAll", "title": "Fix All", "description": "Fix all issues", "category": "Code Actions" },
|
|
236
|
+
{ "command": "editor.action.codeAction", "title": "Code Action", "description": "Show code actions", "category": "Code Actions" }
|
|
237
|
+
];
|
|
238
|
+
|
|
239
|
+
// Navigation & Go To
|
|
240
|
+
const navigationCommands = [
|
|
241
|
+
{ "command": "editor.action.goToDeclaration", "title": "Go to Declaration", "description": "Navigate to declaration", "category": "Navigation" },
|
|
242
|
+
{ "command": "editor.action.revealDefinition", "title": "Reveal Definition", "description": "Reveal definition", "category": "Navigation" },
|
|
243
|
+
{ "command": "editor.action.openDeclarationToTheSide", "title": "Open Declaration to Side", "description": "Open declaration in side editor", "category": "Navigation" },
|
|
244
|
+
{ "command": "editor.action.revealDefinitionAside", "title": "Reveal Definition Aside", "description": "Reveal definition aside", "category": "Navigation" },
|
|
245
|
+
{ "command": "editor.action.previewDeclaration", "title": "Preview Declaration", "description": "Preview declaration", "category": "Navigation" },
|
|
246
|
+
{ "command": "editor.action.peekDefinition", "title": "Peek Definition", "description": "Peek at definition", "category": "Navigation" },
|
|
247
|
+
{ "command": "editor.action.revealDeclaration", "title": "Reveal Declaration", "description": "Reveal declaration", "category": "Navigation" },
|
|
248
|
+
{ "command": "editor.action.peekDeclaration", "title": "Peek Declaration", "description": "Peek at declaration", "category": "Navigation" },
|
|
249
|
+
{ "command": "editor.action.goToTypeDefinition", "title": "Go to Type Definition", "description": "Navigate to type definition", "category": "Navigation" },
|
|
250
|
+
{ "command": "editor.action.peekTypeDefinition", "title": "Peek Type Definition", "description": "Peek at type definition", "category": "Navigation" },
|
|
251
|
+
{ "command": "editor.action.goToImplementation", "title": "Go to Implementation", "description": "Navigate to implementation", "category": "Navigation" },
|
|
252
|
+
{ "command": "editor.action.peekImplementation", "title": "Peek Implementation", "description": "Peek at implementation", "category": "Navigation" },
|
|
253
|
+
{ "command": "editor.action.goToReferences", "title": "Go to References", "description": "Navigate to references", "category": "Navigation" },
|
|
254
|
+
{ "command": "editor.action.referenceSearch.trigger", "title": "Reference Search", "description": "Trigger reference search", "category": "Navigation" },
|
|
255
|
+
{ "command": "editor.action.goToLocations", "title": "Go to Locations", "description": "Navigate to locations", "category": "Navigation" },
|
|
256
|
+
{ "command": "editor.action.peekLocations", "title": "Peek Locations", "description": "Peek at locations", "category": "Navigation" },
|
|
257
|
+
{ "command": "editor.action.findReferences", "title": "Find References", "description": "Find all references", "category": "Navigation" },
|
|
258
|
+
{ "command": "editor.action.showReferences", "title": "Show References", "description": "Show references", "category": "Navigation" },
|
|
259
|
+
{ "command": "editor.action.marker.next", "title": "Next Marker", "description": "Go to next marker", "category": "Navigation" },
|
|
260
|
+
{ "command": "editor.action.marker.prev", "title": "Previous Marker", "description": "Go to previous marker", "category": "Navigation" },
|
|
261
|
+
{ "command": "editor.action.marker.nextInFiles", "title": "Next Marker in Files", "description": "Go to next marker across files", "category": "Navigation" },
|
|
262
|
+
{ "command": "editor.action.marker.prevInFiles", "title": "Previous Marker in Files", "description": "Go to previous marker across files", "category": "Navigation" },
|
|
263
|
+
{ "command": "closeMarkersNavigation", "title": "Close Markers Navigation", "description": "Close markers navigation", "category": "Navigation" },
|
|
264
|
+
{ "command": "goToNextReference", "title": "Go to Next Reference", "description": "Go to next reference", "category": "Navigation" },
|
|
265
|
+
{ "command": "goToPreviousReference", "title": "Go to Previous Reference", "description": "Go to previous reference", "category": "Navigation" },
|
|
266
|
+
{ "command": "goToNextReferenceFromEmbeddedEditor", "title": "Go to Next Reference from Embedded Editor", "description": "Go to next reference from embedded editor", "category": "Navigation" },
|
|
267
|
+
{ "command": "goToPreviousReferenceFromEmbeddedEditor", "title": "Go to Previous Reference from Embedded Editor", "description": "Go to previous reference from embedded editor", "category": "Navigation" },
|
|
268
|
+
{ "command": "closeReferenceSearchEditor", "title": "Close Reference Search Editor", "description": "Close reference search editor", "category": "Navigation" },
|
|
269
|
+
{ "command": "closeReferenceSearch", "title": "Close Reference Search", "description": "Close reference search", "category": "Navigation" },
|
|
270
|
+
{ "command": "revealReference", "title": "Reveal Reference", "description": "Reveal reference", "category": "Navigation" },
|
|
271
|
+
{ "command": "openReferenceToSide", "title": "Open Reference to Side", "description": "Open reference in side editor", "category": "Navigation" },
|
|
272
|
+
{ "command": "openReference", "title": "Open Reference", "description": "Open reference", "category": "Navigation" },
|
|
273
|
+
{ "command": "editor.gotoNextSymbolFromResult", "title": "Go to Next Symbol from Result", "description": "Go to next symbol from search result", "category": "Navigation" },
|
|
274
|
+
{ "command": "editor.gotoNextSymbolFromResult.cancel", "title": "Cancel Go to Next Symbol", "description": "Cancel go to next symbol", "category": "Navigation" }
|
|
275
|
+
];
|
|
276
|
+
|
|
277
|
+
// Comments
|
|
278
|
+
const commentCommands = [
|
|
279
|
+
{ "command": "editor.action.commentLine", "title": "Comment Line", "description": "Toggle line comment", "category": "Comments" },
|
|
280
|
+
{ "command": "editor.action.addCommentLine", "title": "Add Comment Line", "description": "Add line comment", "category": "Comments" },
|
|
281
|
+
{ "command": "editor.action.removeCommentLine", "title": "Remove Comment Line", "description": "Remove line comment", "category": "Comments" },
|
|
282
|
+
{ "command": "editor.action.blockComment", "title": "Block Comment", "description": "Toggle block comment", "category": "Comments" }
|
|
283
|
+
];
|
|
284
|
+
|
|
285
|
+
// Color Picker
|
|
286
|
+
const colorCommands = [
|
|
287
|
+
{ "command": "editor.action.hideColorPicker", "title": "Hide Color Picker", "description": "Hide color picker", "category": "Color" },
|
|
288
|
+
{ "command": "editor.action.insertColorWithStandaloneColorPicker", "title": "Insert Color with Standalone Picker", "description": "Insert color using standalone picker", "category": "Color" },
|
|
289
|
+
{ "command": "editor.action.showOrFocusStandaloneColorPicker", "title": "Show/Focus Standalone Color Picker", "description": "Show or focus standalone color picker", "category": "Color" }
|
|
290
|
+
];
|
|
291
|
+
|
|
292
|
+
// History Navigation
|
|
293
|
+
const historyCommands = [
|
|
294
|
+
{ "command": "history.showPrevious", "title": "Show Previous", "description": "Show previous history item", "category": "History" },
|
|
295
|
+
{ "command": "history.showNext", "title": "Show Next", "description": "Show next history item", "category": "History" }
|
|
296
|
+
];
|
|
297
|
+
|
|
298
|
+
// Folding
|
|
299
|
+
const foldingCommands = [
|
|
300
|
+
{ "command": "editor.unfold", "title": "Unfold", "description": "Unfold current region", "category": "Folding" },
|
|
301
|
+
{ "command": "editor.unfoldRecursively", "title": "Unfold Recursively", "description": "Unfold current region recursively", "category": "Folding" },
|
|
302
|
+
{ "command": "editor.fold", "title": "Fold", "description": "Fold current region", "category": "Folding" },
|
|
303
|
+
{ "command": "editor.foldRecursively", "title": "Fold Recursively", "description": "Fold current region recursively", "category": "Folding" },
|
|
304
|
+
{ "command": "editor.toggleFoldRecursively", "title": "Toggle Fold Recursively", "description": "Toggle fold recursively", "category": "Folding" },
|
|
305
|
+
{ "command": "editor.foldAll", "title": "Fold All", "description": "Fold all regions", "category": "Folding" },
|
|
306
|
+
{ "command": "editor.unfoldAll", "title": "Unfold All", "description": "Unfold all regions", "category": "Folding" },
|
|
307
|
+
{ "command": "editor.foldAllBlockComments", "title": "Fold All Block Comments", "description": "Fold all block comments", "category": "Folding" },
|
|
308
|
+
{ "command": "editor.foldAllMarkerRegions", "title": "Fold All Marker Regions", "description": "Fold all marker regions", "category": "Folding" },
|
|
309
|
+
{ "command": "editor.unfoldAllMarkerRegions", "title": "Unfold All Marker Regions", "description": "Unfold all marker regions", "category": "Folding" },
|
|
310
|
+
{ "command": "editor.foldAllExcept", "title": "Fold All Except", "description": "Fold all except current", "category": "Folding" },
|
|
311
|
+
{ "command": "editor.unfoldAllExcept", "title": "Unfold All Except", "description": "Unfold all except current", "category": "Folding" },
|
|
312
|
+
{ "command": "editor.toggleFold", "title": "Toggle Fold", "description": "Toggle current fold", "category": "Folding" },
|
|
313
|
+
{ "command": "editor.createFoldingRangeFromSelection", "title": "Create Folding Range from Selection", "description": "Create folding range from selection", "category": "Folding" },
|
|
314
|
+
{ "command": "editor.removeManualFoldingRanges", "title": "Remove Manual Folding Ranges", "description": "Remove manual folding ranges", "category": "Folding" },
|
|
315
|
+
{ "command": "editor.toggleImportFold", "title": "Toggle Import Fold", "description": "Toggle import folding", "category": "Folding" },
|
|
316
|
+
{ "command": "editor.foldLevel1", "title": "Fold Level 1", "description": "Fold level 1 regions", "category": "Folding" },
|
|
317
|
+
{ "command": "editor.foldLevel2", "title": "Fold Level 2", "description": "Fold level 2 regions", "category": "Folding" },
|
|
318
|
+
{ "command": "editor.foldLevel3", "title": "Fold Level 3", "description": "Fold level 3 regions", "category": "Folding" },
|
|
319
|
+
{ "command": "editor.foldLevel4", "title": "Fold Level 4", "description": "Fold level 4 regions", "category": "Folding" },
|
|
320
|
+
{ "command": "editor.foldLevel5", "title": "Fold Level 5", "description": "Fold level 5 regions", "category": "Folding" },
|
|
321
|
+
{ "command": "editor.foldLevel6", "title": "Fold Level 6", "description": "Fold level 6 regions", "category": "Folding" },
|
|
322
|
+
{ "command": "editor.foldLevel7", "title": "Fold Level 7", "description": "Fold level 7 regions", "category": "Folding" }
|
|
323
|
+
];
|
|
324
|
+
|
|
325
|
+
// Zoom Commands
|
|
326
|
+
const zoomCommands = [
|
|
327
|
+
{ "command": "editor.action.fontZoomIn", "title": "Font Zoom In", "description": "Increase font size", "category": "Zoom" },
|
|
328
|
+
{ "command": "editor.action.fontZoomOut", "title": "Font Zoom Out", "description": "Decrease font size", "category": "Zoom" },
|
|
329
|
+
{ "command": "editor.action.fontZoomReset", "title": "Font Zoom Reset", "description": "Reset font size", "category": "Zoom" }
|
|
330
|
+
];
|
|
331
|
+
|
|
332
|
+
// Formatting
|
|
333
|
+
const formattingCommands = [
|
|
334
|
+
{ "command": "editor.action.formatDocument", "title": "Format Document", "description": "Format entire document", "category": "Formatting" },
|
|
335
|
+
{ "command": "editor.action.formatSelection", "title": "Format Selection", "description": "Format selected text", "category": "Formatting" },
|
|
336
|
+
{ "command": "editor.action.format", "title": "Format", "description": "Format code", "category": "Formatting" },
|
|
337
|
+
{ "command": "editor.action.formatDocument.multiple", "title": "Format Multiple Documents", "description": "Format multiple documents", "category": "Formatting" },
|
|
338
|
+
{ "command": "editor.action.formatSelection.multiple", "title": "Format Multiple Selections", "description": "Format multiple selections", "category": "Formatting" }
|
|
339
|
+
];
|
|
340
|
+
|
|
341
|
+
// Line Operations
|
|
342
|
+
const lineCommands = [
|
|
343
|
+
{ "command": "editor.action.copyLinesUpAction", "title": "Copy Lines Up", "description": "Copy lines up", "category": "Line Operations" },
|
|
344
|
+
{ "command": "editor.action.copyLinesDownAction", "title": "Copy Lines Down", "description": "Copy lines down", "category": "Line Operations" },
|
|
345
|
+
{ "command": "editor.action.duplicateSelection", "title": "Duplicate Selection", "description": "Duplicate selection", "category": "Line Operations" },
|
|
346
|
+
{ "command": "editor.action.moveLinesUpAction", "title": "Move Lines Up", "description": "Move lines up", "category": "Line Operations" },
|
|
347
|
+
{ "command": "editor.action.moveLinesDownAction", "title": "Move Lines Down", "description": "Move lines down", "category": "Line Operations" },
|
|
348
|
+
{ "command": "editor.action.sortLinesAscending", "title": "Sort Lines Ascending", "description": "Sort lines ascending", "category": "Line Operations" },
|
|
349
|
+
{ "command": "editor.action.sortLinesDescending", "title": "Sort Lines Descending", "description": "Sort lines descending", "category": "Line Operations" },
|
|
350
|
+
{ "command": "editor.action.removeDuplicateLines", "title": "Remove Duplicate Lines", "description": "Remove duplicate lines", "category": "Line Operations" },
|
|
351
|
+
{ "command": "editor.action.trimTrailingWhitespace", "title": "Trim Trailing Whitespace", "description": "Remove trailing whitespace", "category": "Line Operations" },
|
|
352
|
+
{ "command": "editor.action.deleteLines", "title": "Delete Lines", "description": "Delete current lines", "category": "Line Operations" },
|
|
353
|
+
{ "command": "editor.action.indentLines", "title": "Indent Lines", "description": "Indent selected lines", "category": "Line Operations" },
|
|
354
|
+
{ "command": "editor.action.outdentLines", "title": "Outdent Lines", "description": "Outdent selected lines", "category": "Line Operations" },
|
|
355
|
+
{ "command": "editor.action.insertLineBefore", "title": "Insert Line Before", "description": "Insert line before current", "category": "Line Operations" },
|
|
356
|
+
{ "command": "editor.action.insertLineAfter", "title": "Insert Line After", "description": "Insert line after current", "category": "Line Operations" },
|
|
357
|
+
{ "command": "editor.action.joinLines", "title": "Join Lines", "description": "Join selected lines", "category": "Line Operations" },
|
|
358
|
+
{ "command": "editor.action.transpose", "title": "Transpose", "description": "Transpose characters/lines", "category": "Line Operations" },
|
|
359
|
+
{ "command": "editor.action.reverseLines", "title": "Reverse Lines", "description": "Reverse selected lines", "category": "Line Operations" }
|
|
360
|
+
];
|
|
361
|
+
|
|
362
|
+
// Text Transformation
|
|
363
|
+
const textTransformCommands = [
|
|
364
|
+
{ "command": "editor.action.transformToUppercase", "title": "Transform to Uppercase", "description": "Convert to uppercase", "category": "Text Transformation" },
|
|
365
|
+
{ "command": "editor.action.transformToLowercase", "title": "Transform to Lowercase", "description": "Convert to lowercase", "category": "Text Transformation" },
|
|
366
|
+
{ "command": "editor.action.transformToSnakecase", "title": "Transform to Snake Case", "description": "Convert to snake_case", "category": "Text Transformation" },
|
|
367
|
+
{ "command": "editor.action.transformToCamelcase", "title": "Transform to Camel Case", "description": "Convert to camelCase", "category": "Text Transformation" },
|
|
368
|
+
{ "command": "editor.action.transformToPascalcase", "title": "Transform to Pascal Case", "description": "Convert to PascalCase", "category": "Text Transformation" },
|
|
369
|
+
{ "command": "editor.action.transformToTitlecase", "title": "Transform to Title Case", "description": "Convert to Title Case", "category": "Text Transformation" },
|
|
370
|
+
{ "command": "editor.action.transformToKebabcase", "title": "Transform to Kebab Case", "description": "Convert to kebab-case", "category": "Text Transformation" },
|
|
371
|
+
{ "command": "expandLineSelection", "title": "Expand Line Selection", "description": "Expand selection to line", "category": "Text Transformation" }
|
|
372
|
+
];
|
|
373
|
+
|
|
374
|
+
// Snippets
|
|
375
|
+
const snippetCommands = [
|
|
376
|
+
{ "command": "jumpToNextSnippetPlaceholder", "title": "Jump to Next Snippet Placeholder", "description": "Move to next snippet placeholder", "category": "Snippets" },
|
|
377
|
+
{ "command": "jumpToPrevSnippetPlaceholder", "title": "Jump to Previous Snippet Placeholder", "description": "Move to previous snippet placeholder", "category": "Snippets" },
|
|
378
|
+
{ "command": "leaveSnippet", "title": "Leave Snippet", "description": "Exit snippet mode", "category": "Snippets" },
|
|
379
|
+
{ "command": "acceptSnippet", "title": "Accept Snippet", "description": "Accept current snippet", "category": "Snippets" },
|
|
380
|
+
{ "command": "insertSnippet", "title": "Insert Snippet", "description": "Insert code snippet", "category": "Snippets" }
|
|
381
|
+
];
|
|
382
|
+
|
|
383
|
+
// Rename
|
|
384
|
+
const renameCommands = [
|
|
385
|
+
{ "command": "editor.action.rename", "title": "Rename", "description": "Rename symbol", "category": "Rename" },
|
|
386
|
+
{ "command": "acceptRenameInput", "title": "Accept Rename Input", "description": "Accept rename changes", "category": "Rename" },
|
|
387
|
+
{ "command": "acceptRenameInputWithPreview", "title": "Accept Rename Input with Preview", "description": "Accept rename with preview", "category": "Rename" },
|
|
388
|
+
{ "command": "cancelRenameInput", "title": "Cancel Rename Input", "description": "Cancel rename operation", "category": "Rename" },
|
|
389
|
+
{ "command": "focusNextRenameSuggestion", "title": "Focus Next Rename Suggestion", "description": "Focus next rename suggestion", "category": "Rename" },
|
|
390
|
+
{ "command": "focusPreviousRenameSuggestion", "title": "Focus Previous Rename Suggestion", "description": "Focus previous rename suggestion", "category": "Rename" }
|
|
391
|
+
];
|
|
392
|
+
|
|
393
|
+
// Suggestions & Autocomplete
|
|
394
|
+
const suggestionCommands = [
|
|
395
|
+
{ "command": "editor.action.triggerSuggest", "title": "Trigger Suggestions", "description": "Show code suggestions", "category": "Suggestions" },
|
|
396
|
+
{ "command": "acceptSelectedSuggestion", "title": "Accept Selected Suggestion", "description": "Accept selected suggestion", "category": "Suggestions" },
|
|
397
|
+
{ "command": "acceptAlternativeSelectedSuggestion", "title": "Accept Alternative Selected Suggestion", "description": "Accept alternative suggestion", "category": "Suggestions" },
|
|
398
|
+
{ "command": "acceptSelectedSuggestionOnEnter", "title": "Accept Suggestion on Enter", "description": "Accept suggestion with Enter", "category": "Suggestions" },
|
|
399
|
+
{ "command": "hideSuggestWidget", "title": "Hide Suggest Widget", "description": "Hide suggestion widget", "category": "Suggestions" },
|
|
400
|
+
{ "command": "selectNextSuggestion", "title": "Select Next Suggestion", "description": "Select next suggestion", "category": "Suggestions" },
|
|
401
|
+
{ "command": "selectNextPageSuggestion", "title": "Select Next Page Suggestion", "description": "Select next page of suggestions", "category": "Suggestions" },
|
|
402
|
+
{ "command": "selectLastSuggestion", "title": "Select Last Suggestion", "description": "Select last suggestion", "category": "Suggestions" },
|
|
403
|
+
{ "command": "selectPrevSuggestion", "title": "Select Previous Suggestion", "description": "Select previous suggestion", "category": "Suggestions" },
|
|
404
|
+
{ "command": "selectPrevPageSuggestion", "title": "Select Previous Page Suggestion", "description": "Select previous page of suggestions", "category": "Suggestions" },
|
|
405
|
+
{ "command": "selectFirstSuggestion", "title": "Select First Suggestion", "description": "Select first suggestion", "category": "Suggestions" },
|
|
406
|
+
{ "command": "focusSuggestion", "title": "Focus Suggestion", "description": "Focus suggestion widget", "category": "Suggestions" },
|
|
407
|
+
{ "command": "focusAndAcceptSuggestion", "title": "Focus and Accept Suggestion", "description": "Focus and accept suggestion", "category": "Suggestions" },
|
|
408
|
+
{ "command": "toggleSuggestionDetails", "title": "Toggle Suggestion Details", "description": "Toggle suggestion details", "category": "Suggestions" },
|
|
409
|
+
{ "command": "toggleExplainMode", "title": "Toggle Explain Mode", "description": "Toggle explain mode for suggestions", "category": "Suggestions" },
|
|
410
|
+
{ "command": "toggleSuggestionFocus", "title": "Toggle Suggestion Focus", "description": "Toggle suggestion focus", "category": "Suggestions" },
|
|
411
|
+
{ "command": "insertBestCompletion", "title": "Insert Best Completion", "description": "Insert best completion", "category": "Suggestions" },
|
|
412
|
+
{ "command": "insertNextSuggestion", "title": "Insert Next Suggestion", "description": "Insert next suggestion", "category": "Suggestions" },
|
|
413
|
+
{ "command": "insertPrevSuggestion", "title": "Insert Previous Suggestion", "description": "Insert previous suggestion", "category": "Suggestions" },
|
|
414
|
+
{ "command": "editor.action.resetSuggestSize", "title": "Reset Suggest Size", "description": "Reset suggestion widget size", "category": "Suggestions" }
|
|
415
|
+
];
|
|
416
|
+
|
|
417
|
+
// Inline Suggestions
|
|
418
|
+
const inlineSuggestionCommands = [
|
|
419
|
+
{ "command": "editor.action.inlineSuggest.trigger", "title": "Trigger Inline Suggestions", "description": "Trigger inline suggestions", "category": "Inline Suggestions" },
|
|
420
|
+
{ "command": "editor.action.inlineSuggest.showNext", "title": "Show Next Inline Suggestion", "description": "Show next inline suggestion", "category": "Inline Suggestions" },
|
|
421
|
+
{ "command": "editor.action.inlineSuggest.showPrevious", "title": "Show Previous Inline Suggestion", "description": "Show previous inline suggestion", "category": "Inline Suggestions" },
|
|
422
|
+
{ "command": "editor.action.inlineSuggest.acceptNextWord", "title": "Accept Next Word", "description": "Accept next word of inline suggestion", "category": "Inline Suggestions" },
|
|
423
|
+
{ "command": "editor.action.inlineSuggest.acceptNextLine", "title": "Accept Next Line", "description": "Accept next line of inline suggestion", "category": "Inline Suggestions" },
|
|
424
|
+
{ "command": "editor.action.inlineSuggest.commit", "title": "Commit Inline Suggestion", "description": "Commit inline suggestion", "category": "Inline Suggestions" },
|
|
425
|
+
{ "command": "editor.action.inlineSuggest.commitAlternativeAction", "title": "Commit Alternative Action", "description": "Commit alternative inline suggestion action", "category": "Inline Suggestions" },
|
|
426
|
+
{ "command": "editor.action.inlineSuggest.toggleShowCollapsed", "title": "Toggle Show Collapsed", "description": "Toggle showing collapsed inline suggestions", "category": "Inline Suggestions" },
|
|
427
|
+
{ "command": "editor.action.inlineSuggest.hide", "title": "Hide Inline Suggestions", "description": "Hide inline suggestions", "category": "Inline Suggestions" },
|
|
428
|
+
{ "command": "editor.action.inlineSuggest.jump", "title": "Jump Inline Suggestions", "description": "Jump in inline suggestions", "category": "Inline Suggestions" },
|
|
429
|
+
{ "command": "editor.action.inlineSuggest.toggleAlwaysShowToolbar", "title": "Toggle Always Show Toolbar", "description": "Toggle always showing toolbar", "category": "Inline Suggestions" },
|
|
430
|
+
{ "command": "editor.action.inlineSuggest.dev.extractRepro", "title": "Extract Repro", "description": "Extract reproduction for inline suggestions", "category": "Inline Suggestions" },
|
|
431
|
+
{ "command": "editor.action.inlineSuggest.snooze", "title": "Snooze Inline Suggestions", "description": "Snooze inline suggestions", "category": "Inline Suggestions" },
|
|
432
|
+
{ "command": "editor.action.inlineSuggest.cancelSnooze", "title": "Cancel Snooze", "description": "Cancel inline suggestion snooze", "category": "Inline Suggestions" },
|
|
433
|
+
{ "command": "editor.action.accessibleViewAcceptInlineCompletion", "title": "Accessible View: Accept Inline Completion", "description": "Accept inline completion in accessible view", "category": "Inline Suggestions" }
|
|
434
|
+
];
|
|
435
|
+
|
|
436
|
+
// Hover
|
|
437
|
+
const hoverCommands = [
|
|
438
|
+
{ "command": "editor.action.showHover", "title": "Show Hover", "description": "Show hover information", "category": "Hover" },
|
|
439
|
+
{ "command": "editor.action.showDefinitionPreviewHover", "title": "Show Definition Preview Hover", "description": "Show definition preview in hover", "category": "Hover" },
|
|
440
|
+
{ "command": "editor.action.hideHover", "title": "Hide Hover", "description": "Hide hover information", "category": "Hover" },
|
|
441
|
+
{ "command": "editor.action.scrollUpHover", "title": "Scroll Up Hover", "description": "Scroll hover up", "category": "Hover" },
|
|
442
|
+
{ "command": "editor.action.scrollDownHover", "title": "Scroll Down Hover", "description": "Scroll hover down", "category": "Hover" },
|
|
443
|
+
{ "command": "editor.action.scrollLeftHover", "title": "Scroll Left Hover", "description": "Scroll hover left", "category": "Hover" },
|
|
444
|
+
{ "command": "editor.action.scrollRightHover", "title": "Scroll Right Hover", "description": "Scroll hover right", "category": "Hover" },
|
|
445
|
+
{ "command": "editor.action.pageUpHover", "title": "Page Up Hover", "description": "Page up in hover", "category": "Hover" },
|
|
446
|
+
{ "command": "editor.action.pageDownHover", "title": "Page Down Hover", "description": "Page down in hover", "category": "Hover" },
|
|
447
|
+
{ "command": "editor.action.goToTopHover", "title": "Go to Top Hover", "description": "Go to top of hover", "category": "Hover" },
|
|
448
|
+
{ "command": "editor.action.goToBottomHover", "title": "Go to Bottom Hover", "description": "Go to bottom of hover", "category": "Hover" },
|
|
449
|
+
{ "command": "editor.action.increaseHoverVerbosityLevel", "title": "Increase Hover Verbosity", "description": "Increase hover detail level", "category": "Hover" },
|
|
450
|
+
{ "command": "editor.action.decreaseHoverVerbosityLevel", "title": "Decrease Hover Verbosity", "description": "Decrease hover detail level", "category": "Hover" }
|
|
451
|
+
];
|
|
452
|
+
|
|
453
|
+
// Indentation
|
|
454
|
+
const indentationCommands = [
|
|
455
|
+
{ "command": "editor.action.indentationToSpaces", "title": "Convert Indentation to Spaces", "description": "Convert tabs to spaces", "category": "Indentation" },
|
|
456
|
+
{ "command": "editor.action.indentationToTabs", "title": "Convert Indentation to Tabs", "description": "Convert spaces to tabs", "category": "Indentation" },
|
|
457
|
+
{ "command": "editor.action.indentUsingTabs", "title": "Indent Using Tabs", "description": "Use tabs for indentation", "category": "Indentation" },
|
|
458
|
+
{ "command": "editor.action.indentUsingSpaces", "title": "Indent Using Spaces", "description": "Use spaces for indentation", "category": "Indentation" },
|
|
459
|
+
{ "command": "editor.action.changeTabDisplaySize", "title": "Change Tab Display Size", "description": "Change visual tab size", "category": "Indentation" },
|
|
460
|
+
{ "command": "editor.action.detectIndentation", "title": "Detect Indentation", "description": "Detect indentation style", "category": "Indentation" },
|
|
461
|
+
{ "command": "editor.action.reindentlines", "title": "Reindent Lines", "description": "Reindent lines", "category": "Indentation" },
|
|
462
|
+
{ "command": "editor.action.reindentselectedlines", "title": "Reindent Selected Lines", "description": "Reindent selected lines", "category": "Indentation" }
|
|
463
|
+
];
|
|
464
|
+
|
|
465
|
+
// In-Place Replace
|
|
466
|
+
const inPlaceReplaceCommands = [
|
|
467
|
+
{ "command": "editor.action.inPlaceReplace.up", "title": "In-Place Replace Up", "description": "Replace with previous value", "category": "In-Place Replace" },
|
|
468
|
+
{ "command": "editor.action.inPlaceReplace.down", "title": "In-Place Replace Down", "description": "Replace with next value", "category": "In-Place Replace" }
|
|
469
|
+
];
|
|
470
|
+
|
|
471
|
+
// Multi-Cursor
|
|
472
|
+
const multiCursorCommands = [
|
|
473
|
+
{ "command": "editor.action.insertCursorAbove", "title": "Insert Cursor Above", "description": "Add cursor above current line", "category": "Multi-Cursor" },
|
|
474
|
+
{ "command": "editor.action.insertCursorBelow", "title": "Insert Cursor Below", "description": "Add cursor below current line", "category": "Multi-Cursor" },
|
|
475
|
+
{ "command": "editor.action.insertCursorAtEndOfEachLineSelected", "title": "Insert Cursor at End of Each Line", "description": "Add cursors to end of selected lines", "category": "Multi-Cursor" },
|
|
476
|
+
{ "command": "editor.action.addCursorsToBottom", "title": "Add Cursors to Bottom", "description": "Add cursors to bottom", "category": "Multi-Cursor" },
|
|
477
|
+
{ "command": "editor.action.addCursorsToTop", "title": "Add Cursors to Top", "description": "Add cursors to top", "category": "Multi-Cursor" },
|
|
478
|
+
{ "command": "editor.action.focusNextCursor", "title": "Focus Next Cursor", "description": "Focus next cursor in multi-cursor mode", "category": "Multi-Cursor" },
|
|
479
|
+
{ "command": "editor.action.focusPreviousCursor", "title": "Focus Previous Cursor", "description": "Focus previous cursor in multi-cursor mode", "category": "Multi-Cursor" }
|
|
480
|
+
];
|
|
481
|
+
|
|
482
|
+
// Parameter Hints
|
|
483
|
+
const parameterHintCommands = [
|
|
484
|
+
{ "command": "editor.action.triggerParameterHints", "title": "Trigger Parameter Hints", "description": "Show parameter hints", "category": "Parameter Hints" },
|
|
485
|
+
{ "command": "closeParameterHints", "title": "Close Parameter Hints", "description": "Close parameter hints", "category": "Parameter Hints" },
|
|
486
|
+
{ "command": "showPrevParameterHint", "title": "Show Previous Parameter Hint", "description": "Show previous parameter hint", "category": "Parameter Hints" },
|
|
487
|
+
{ "command": "showNextParameterHint", "title": "Show Next Parameter Hint", "description": "Show next parameter hint", "category": "Parameter Hints" }
|
|
488
|
+
];
|
|
489
|
+
|
|
490
|
+
// Sticky Scroll
|
|
491
|
+
const stickyScrollCommands = [
|
|
492
|
+
{ "command": "editor.action.toggleStickyScroll", "title": "Toggle Sticky Scroll", "description": "Toggle sticky scroll", "category": "Sticky Scroll" },
|
|
493
|
+
{ "command": "editor.action.focusStickyScroll", "title": "Focus Sticky Scroll", "description": "Focus sticky scroll", "category": "Sticky Scroll" },
|
|
494
|
+
{ "command": "editor.action.selectPreviousStickyScrollLine", "title": "Select Previous Sticky Scroll Line", "description": "Select previous sticky scroll line", "category": "Sticky Scroll" },
|
|
495
|
+
{ "command": "editor.action.selectNextStickyScrollLine", "title": "Select Next Sticky Scroll Line", "description": "Select next sticky scroll line", "category": "Sticky Scroll" },
|
|
496
|
+
{ "command": "editor.action.goToFocusedStickyScrollLine", "title": "Go to Focused Sticky Scroll Line", "description": "Go to focused sticky scroll line", "category": "Sticky Scroll" }
|
|
497
|
+
];
|
|
498
|
+
|
|
499
|
+
// Miscellaneous Editor
|
|
500
|
+
const miscEditorCommands = [
|
|
501
|
+
{ "command": "editor.action.selectEditor", "title": "Select Editor", "description": "Select editor", "category": "Miscellaneous Editor" },
|
|
502
|
+
{ "command": "editor.action.forceRetokenize", "title": "Force Retokenize", "description": "Force retokenization", "category": "Miscellaneous Editor" },
|
|
503
|
+
{ "command": "editor.action.toggleTabFocusMode", "title": "Toggle Tab Focus Mode", "description": "Toggle tab focus mode", "category": "Miscellaneous Editor" },
|
|
504
|
+
{ "command": "editor.action.debugEditorGpuRenderer", "title": "Debug Editor GPU Renderer", "description": "Debug GPU renderer", "category": "Miscellaneous Editor" },
|
|
505
|
+
{ "command": "editor.action.insertFinalNewLine", "title": "Insert Final New Line", "description": "Insert new line at end of file", "category": "Miscellaneous Editor" },
|
|
506
|
+
{ "command": "cancelLinkedEditingInput", "title": "Cancel Linked Editing Input", "description": "Cancel linked editing", "category": "Miscellaneous Editor" },
|
|
507
|
+
{ "command": "editor.action.linkedEditing", "title": "Linked Editing", "description": "Enable linked editing", "category": "Miscellaneous Editor" },
|
|
508
|
+
{ "command": "editor.action.openLink", "title": "Open Link", "description": "Open link at cursor", "category": "Miscellaneous Editor" },
|
|
509
|
+
{ "command": "togglePeekWidgetFocus", "title": "Toggle Peek Widget Focus", "description": "Toggle focus on peek widget", "category": "Miscellaneous Editor" },
|
|
510
|
+
{ "command": "codelens.showLensesInCurrentLine", "title": "Show CodeLens in Current Line", "description": "Show CodeLens for current line", "category": "Miscellaneous Editor" }
|
|
511
|
+
];
|
|
512
|
+
|
|
513
|
+
// Unicode Highlighting
|
|
514
|
+
const unicodeCommands = [
|
|
515
|
+
{ "command": "editor.action.unicodeHighlight.disableHighlightingOfAmbiguousCharacters", "title": "Disable Ambiguous Character Highlighting", "description": "Disable highlighting of ambiguous Unicode characters", "category": "Unicode" },
|
|
516
|
+
{ "command": "editor.action.unicodeHighlight.disableHighlightingOfInvisibleCharacters", "title": "Disable Invisible Character Highlighting", "description": "Disable highlighting of invisible Unicode characters", "category": "Unicode" },
|
|
517
|
+
{ "command": "editor.action.unicodeHighlight.disableHighlightingOfNonBasicAsciiCharacters", "title": "Disable Non-Basic ASCII Highlighting", "description": "Disable highlighting of non-basic ASCII characters", "category": "Unicode" },
|
|
518
|
+
{ "command": "editor.action.unicodeHighlight.showExcludeOptions", "title": "Show Unicode Exclude Options", "description": "Show Unicode exclusion options", "category": "Unicode" }
|
|
519
|
+
];
|
|
520
|
+
|
|
521
|
+
// Word Highlight
|
|
522
|
+
const wordHighlightCommands = [
|
|
523
|
+
{ "command": "editor.action.wordHighlight.next", "title": "Next Word Highlight", "description": "Go to next word highlight", "category": "Word Highlight" },
|
|
524
|
+
{ "command": "editor.action.wordHighlight.prev", "title": "Previous Word Highlight", "description": "Go to previous word highlight", "category": "Word Highlight" },
|
|
525
|
+
{ "command": "editor.action.wordHighlight.trigger", "title": "Trigger Word Highlight", "description": "Trigger word highlighting", "category": "Word Highlight" }
|
|
526
|
+
];
|
|
527
|
+
|
|
528
|
+
// Widget Navigation
|
|
529
|
+
const widgetNavigationCommands = [
|
|
530
|
+
{ "command": "widgetNavigation.focusPrevious", "title": "Focus Previous Widget", "description": "Focus previous widget", "category": "Widget Navigation" },
|
|
531
|
+
{ "command": "widgetNavigation.focusNext", "title": "Focus Next Widget", "description": "Focus next widget", "category": "Widget Navigation" }
|
|
532
|
+
];
|
|
533
|
+
|
|
534
|
+
// Accessibility
|
|
535
|
+
const accessibilityCommands = [
|
|
536
|
+
{ "command": "editor.action.accessibleViewNext", "title": "Accessible View Next", "description": "Next item in accessible view", "category": "Accessibility" },
|
|
537
|
+
{ "command": "editor.action.accessibleViewNextCodeBlock", "title": "Accessible View Next Code Block", "description": "Next code block in accessible view", "category": "Accessibility" },
|
|
538
|
+
{ "command": "editor.action.accessibleViewPreviousCodeBlock", "title": "Accessible View Previous Code Block", "description": "Previous code block in accessible view", "category": "Accessibility" },
|
|
539
|
+
{ "command": "editor.action.accessibleViewPrevious", "title": "Accessible View Previous", "description": "Previous item in accessible view", "category": "Accessibility" },
|
|
540
|
+
{ "command": "editor.action.accessibleViewGoToSymbol", "title": "Accessible View Go to Symbol", "description": "Go to symbol in accessible view", "category": "Accessibility" },
|
|
541
|
+
{ "command": "editor.action.accessibilityHelp", "title": "Accessibility Help", "description": "Show accessibility help", "category": "Accessibility" },
|
|
542
|
+
{ "command": "editor.action.accessibleView", "title": "Accessible View", "description": "Open accessible view", "category": "Accessibility" },
|
|
543
|
+
{ "command": "editor.action.accessibleViewDisableHint", "title": "Disable Accessible View Hint", "description": "Disable accessible view hints", "category": "Accessibility" },
|
|
544
|
+
{ "command": "editor.action.accessibilityHelpConfigureKeybindings", "title": "Configure Accessibility Keybindings", "description": "Configure accessibility keybindings", "category": "Accessibility" },
|
|
545
|
+
{ "command": "editor.action.accessibilityHelpConfigureAssignedKeybindings", "title": "Configure Assigned Accessibility Keybindings", "description": "Configure assigned accessibility keybindings", "category": "Accessibility" },
|
|
546
|
+
{ "command": "editor.action.accessibilityHelpOpenHelpLink", "title": "Open Accessibility Help Link", "description": "Open accessibility help link", "category": "Accessibility" },
|
|
547
|
+
{ "command": "editor.action.accessibleDiffViewer.next", "title": "Accessible Diff Viewer Next", "description": "Next in accessible diff viewer", "category": "Accessibility" },
|
|
548
|
+
{ "command": "editor.action.accessibleDiffViewer.prev", "title": "Accessible Diff Viewer Previous", "description": "Previous in accessible diff viewer", "category": "Accessibility" }
|
|
549
|
+
];
|
|
550
|
+
|
|
551
|
+
// TextMate Scopes
|
|
552
|
+
const textMateCommands = [
|
|
553
|
+
{ "command": "editor.action.inspectTMScopes", "title": "Inspect TM Scopes", "description": "Inspect TextMate scopes", "category": "TextMate" }
|
|
554
|
+
];
|
|
555
|
+
|
|
556
|
+
// Word Wrap
|
|
557
|
+
const wordWrapCommands = [
|
|
558
|
+
{ "command": "editor.action.toggleWordWrap", "title": "Toggle Word Wrap", "description": "Toggle word wrapping", "category": "Word Wrap" }
|
|
559
|
+
];
|
|
560
|
+
|
|
561
|
+
// Test Commands
|
|
562
|
+
const testCommands = [
|
|
563
|
+
{ "command": "editor.closeTestPeek", "title": "Close Test Peek", "description": "Close test peek view", "category": "Testing" }
|
|
564
|
+
];
|
|
565
|
+
|
|
566
|
+
// Diff Editor Commands
|
|
567
|
+
const diffEditorCommands = [
|
|
568
|
+
{ "command": "diffEditor.toggleCollapseUnchangedRegions", "title": "Toggle Collapse Unchanged Regions", "description": "Toggle collapsing unchanged regions in diff", "category": "Diff Editor" },
|
|
569
|
+
{ "command": "diffEditor.toggleShowMovedCodeBlocks", "title": "Toggle Show Moved Code Blocks", "description": "Toggle showing moved code blocks in diff", "category": "Diff Editor" },
|
|
570
|
+
{ "command": "diffEditor.toggleUseInlineViewWhenSpaceIsLimited", "title": "Toggle Inline View for Limited Space", "description": "Use inline view when space is limited", "category": "Diff Editor" },
|
|
571
|
+
{ "command": "diffEditor.revert", "title": "Revert Diff", "description": "Revert changes in diff", "category": "Diff Editor" },
|
|
572
|
+
{ "command": "diffEditor.switchSide", "title": "Switch Side", "description": "Switch diff sides", "category": "Diff Editor" },
|
|
573
|
+
{ "command": "diffEditor.exitCompareMove", "title": "Exit Compare Move", "description": "Exit compare move mode", "category": "Diff Editor" },
|
|
574
|
+
{ "command": "diffEditor.collapseAllUnchangedRegions", "title": "Collapse All Unchanged Regions", "description": "Collapse all unchanged regions", "category": "Diff Editor" },
|
|
575
|
+
{ "command": "diffEditor.showAllUnchangedRegions", "title": "Show All Unchanged Regions", "description": "Show all unchanged regions", "category": "Diff Editor" },
|
|
576
|
+
{ "command": "editor.action.diffReview.next", "title": "Diff Review Next", "description": "Next diff in review", "category": "Diff Editor" },
|
|
577
|
+
{ "command": "editor.action.diffReview.prev", "title": "Diff Review Previous", "description": "Previous diff in review", "category": "Diff Editor" }
|
|
578
|
+
];
|
|
579
|
+
|
|
580
|
+
// Context Menu
|
|
581
|
+
const contextMenuCommands = [
|
|
582
|
+
{ "command": "editor.action.showContextMenu", "title": "Show Context Menu", "description": "Show editor context menu", "category": "Context Menu" },
|
|
583
|
+
{ "command": "editor.action.cancelSelectionAnchor", "title": "Cancel Selection Anchor", "description": "Cancel selection anchor", "category": "Context Menu" }
|
|
584
|
+
];
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
// Editor Dictation
|
|
591
|
+
const dictationCommands = [
|
|
592
|
+
{ "command": "workbench.action.editorDictation.start", "title": "Start Editor Dictation", "description": "Start voice dictation in editor", "category": "Dictation" },
|
|
593
|
+
{ "command": "workbench.action.editorDictation.stop", "title": "Stop Editor Dictation", "description": "Stop voice dictation in editor", "category": "Dictation" }
|
|
594
|
+
];
|
|
595
|
+
|
|
596
|
+
// View Management
|
|
597
|
+
const viewCommands = [
|
|
598
|
+
{ "command": "views.moveViewUp", "title": "Move View Up", "description": "Move view upward", "category": "View Management" },
|
|
599
|
+
{ "command": "views.moveViewLeft", "title": "Move View Left", "description": "Move view to the left", "category": "View Management" },
|
|
600
|
+
{ "command": "views.moveViewDown", "title": "Move View Down", "description": "Move view downward", "category": "View Management" },
|
|
601
|
+
{ "command": "views.moveViewRight", "title": "Move View Right", "description": "Move view to the right", "category": "View Management" },
|
|
602
|
+
{ "command": "vscode.moveViews", "title": "Move Views", "description": "Move multiple views", "category": "View Management" }
|
|
603
|
+
];
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
// Help & Documentation
|
|
608
|
+
const helpCommands = [
|
|
609
|
+
{ "command": "workbench.action.keybindingsReference", "title": "Keybindings Reference", "description": "Open keybindings reference", "category": "Help & Documentation" },
|
|
610
|
+
{ "command": "workbench.action.openVideoTutorialsUrl", "title": "Open Video Tutorials", "description": "Open video tutorials URL", "category": "Help & Documentation" },
|
|
611
|
+
{ "command": "workbench.action.openTipsAndTricksUrl", "title": "Open Tips and Tricks", "description": "Open tips and tricks URL", "category": "Help & Documentation" },
|
|
612
|
+
{ "command": "workbench.action.openDocumentationUrl", "title": "Open Documentation", "description": "Open documentation URL", "category": "Help & Documentation" },
|
|
613
|
+
{ "command": "workbench.action.openNewsletterSignupUrl", "title": "Open Newsletter Signup", "description": "Open newsletter signup URL", "category": "Help & Documentation" },
|
|
614
|
+
{ "command": "workbench.action.openYouTubeUrl", "title": "Open YouTube", "description": "Open YouTube URL", "category": "Help & Documentation" },
|
|
615
|
+
{ "command": "workbench.action.openRequestFeatureUrl", "title": "Open Request Feature", "description": "Open feature request URL", "category": "Help & Documentation" },
|
|
616
|
+
{ "command": "workbench.action.openLicenseUrl", "title": "Open License", "description": "Open license URL", "category": "Help & Documentation" },
|
|
617
|
+
{ "command": "workbench.action.openPrivacyStatementUrl", "title": "Open Privacy Statement", "description": "Open privacy statement URL", "category": "Help & Documentation" },
|
|
618
|
+
{ "command": "workbench.action.getStartedWithAccessibilityFeatures", "title": "Get Started with Accessibility", "description": "Get started with accessibility features", "category": "Help & Documentation" },
|
|
619
|
+
{ "command": "workbench.action.askVScode", "title": "Ask VS Code", "description": "Ask VS Code for help", "category": "Help & Documentation" }
|
|
620
|
+
];
|
|
621
|
+
|
|
622
|
+
// Panel Management
|
|
623
|
+
const panelCommands = [
|
|
624
|
+
{ "command": "workbench.action.togglePanel", "title": "Toggle Panel", "description": "Show/hide panel", "category": "Panel Management" },
|
|
625
|
+
{ "command": "workbench.action.closePanel", "title": "Close Panel", "description": "Close panel", "category": "Panel Management" },
|
|
626
|
+
{ "command": "workbench.action.focusPanel", "title": "Focus Panel", "description": "Focus panel", "category": "Panel Management" },
|
|
627
|
+
{ "command": "workbench.action.positionPanelTop", "title": "Position Panel Top", "description": "Move panel to top", "category": "Panel Management" },
|
|
628
|
+
{ "command": "workbench.action.positionPanelLeft", "title": "Position Panel Left", "description": "Move panel to left", "category": "Panel Management" },
|
|
629
|
+
{ "command": "workbench.action.positionPanelRight", "title": "Position Panel Right", "description": "Move panel to right", "category": "Panel Management" },
|
|
630
|
+
{ "command": "workbench.action.positionPanelBottom", "title": "Position Panel Bottom", "description": "Move panel to bottom", "category": "Panel Management" },
|
|
631
|
+
{ "command": "workbench.action.alignPanelLeft", "title": "Align Panel Left", "description": "Align panel content left", "category": "Panel Management" },
|
|
632
|
+
{ "command": "workbench.action.alignPanelRight", "title": "Align Panel Right", "description": "Align panel content right", "category": "Panel Management" },
|
|
633
|
+
{ "command": "workbench.action.alignPanelCenter", "title": "Align Panel Center", "description": "Align panel content center", "category": "Panel Management" },
|
|
634
|
+
{ "command": "workbench.action.alignPanelJustify", "title": "Align Panel Justify", "description": "Justify panel content", "category": "Panel Management" },
|
|
635
|
+
{ "command": "workbench.action.previousPanelView", "title": "Previous Panel View", "description": "Switch to previous panel view", "category": "Panel Management" },
|
|
636
|
+
{ "command": "workbench.action.nextPanelView", "title": "Next Panel View", "description": "Switch to next panel view", "category": "Panel Management" },
|
|
637
|
+
{ "command": "workbench.action.toggleMaximizedPanel", "title": "Toggle Maximized Panel", "description": "Toggle panel maximization", "category": "Panel Management" },
|
|
638
|
+
{ "command": "workbench.action.movePanelToSidePanel", "title": "Move Panel to Side Panel", "description": "Move panel to side panel", "category": "Panel Management" },
|
|
639
|
+
{ "command": "workbench.action.movePanelToSecondarySideBar", "title": "Move Panel to Secondary Sidebar", "description": "Move panel to secondary sidebar", "category": "Panel Management" },
|
|
640
|
+
{ "command": "workbench.action.moveSidePanelToPanel", "title": "Move Side Panel to Panel", "description": "Move side panel to main panel", "category": "Panel Management" },
|
|
641
|
+
{ "command": "workbench.action.moveSecondarySideBarToPanel", "title": "Move Secondary Sidebar to Panel", "description": "Move secondary sidebar to panel", "category": "Panel Management" }
|
|
642
|
+
];
|
|
643
|
+
|
|
644
|
+
// Auxiliary Bar Management
|
|
645
|
+
const auxiliaryBarCommands = [
|
|
646
|
+
{ "command": "workbench.action.toggleAuxiliaryBar", "title": "Toggle Auxiliary Bar", "description": "Show/hide auxiliary bar", "category": "Auxiliary Bar" },
|
|
647
|
+
{ "command": "workbench.action.closeAuxiliaryBar", "title": "Close Auxiliary Bar", "description": "Close auxiliary bar", "category": "Auxiliary Bar" },
|
|
648
|
+
{ "command": "workbench.action.focusAuxiliaryBar", "title": "Focus Auxiliary Bar", "description": "Focus auxiliary bar", "category": "Auxiliary Bar" },
|
|
649
|
+
{ "command": "workbench.action.previousAuxiliaryBarView", "title": "Previous Auxiliary Bar View", "description": "Switch to previous auxiliary bar view", "category": "Auxiliary Bar" },
|
|
650
|
+
{ "command": "workbench.action.nextAuxiliaryBarView", "title": "Next Auxiliary Bar View", "description": "Switch to next auxiliary bar view", "category": "Auxiliary Bar" },
|
|
651
|
+
{ "command": "workbench.action.maximizeAuxiliaryBar", "title": "Maximize Auxiliary Bar", "description": "Maximize auxiliary bar", "category": "Auxiliary Bar" },
|
|
652
|
+
{ "command": "workbench.action.restoreAuxiliaryBar", "title": "Restore Auxiliary Bar", "description": "Restore auxiliary bar size", "category": "Auxiliary Bar" },
|
|
653
|
+
{ "command": "workbench.action.toggleMaximizedAuxiliaryBar", "title": "Toggle Maximized Auxiliary Bar", "description": "Toggle auxiliary bar maximization", "category": "Auxiliary Bar" }
|
|
654
|
+
];
|
|
655
|
+
|
|
656
|
+
// Layout Management
|
|
657
|
+
const layoutCommands = [
|
|
658
|
+
{ "command": "workbench.action.toggleCenteredLayout", "title": "Toggle Centered Layout", "description": "Toggle centered editor layout", "category": "Layout Management" },
|
|
659
|
+
{ "command": "workbench.action.moveSideBarRight", "title": "Move Sidebar Right", "description": "Move sidebar to right side", "category": "Layout Management" },
|
|
660
|
+
{ "command": "workbench.action.moveSideBarLeft", "title": "Move Sidebar Left", "description": "Move sidebar to left side", "category": "Layout Management" },
|
|
661
|
+
{ "command": "workbench.action.toggleSidebarPosition", "title": "Toggle Sidebar Position", "description": "Toggle sidebar position", "category": "Layout Management" },
|
|
662
|
+
{ "command": "workbench.action.toggleEditorVisibility", "title": "Toggle Editor Visibility", "description": "Show/hide editor", "category": "Layout Management" },
|
|
663
|
+
{ "command": "workbench.action.toggleSidebarVisibility", "title": "Toggle Sidebar Visibility", "description": "Show/hide sidebar", "category": "Layout Management" },
|
|
664
|
+
{ "command": "workbench.action.toggleStatusbarVisibility", "title": "Toggle Status Bar Visibility", "description": "Show/hide status bar", "category": "Layout Management" },
|
|
665
|
+
{ "command": "workbench.action.hideEditorTabs", "title": "Hide Editor Tabs", "description": "Hide editor tabs", "category": "Layout Management" },
|
|
666
|
+
{ "command": "workbench.action.zenHideEditorTabs", "title": "Zen Mode: Hide Editor Tabs", "description": "Hide editor tabs in Zen mode", "category": "Layout Management" },
|
|
667
|
+
{ "command": "workbench.action.showMultipleEditorTabs", "title": "Show Multiple Editor Tabs", "description": "Show multiple editor tabs", "category": "Layout Management" },
|
|
668
|
+
{ "command": "workbench.action.zenShowMultipleEditorTabs", "title": "Zen Mode: Show Multiple Editor Tabs", "description": "Show multiple editor tabs in Zen mode", "category": "Layout Management" },
|
|
669
|
+
{ "command": "workbench.action.showEditorTab", "title": "Show Editor Tab", "description": "Show editor tab", "category": "Layout Management" },
|
|
670
|
+
{ "command": "workbench.action.zenShowEditorTab", "title": "Zen Mode: Show Editor Tab", "description": "Show editor tab in Zen mode", "category": "Layout Management" },
|
|
671
|
+
{ "command": "workbench.action.editorActionsTitleBar", "title": "Show Editor Actions in Title Bar", "description": "Show editor actions in title bar", "category": "Layout Management" },
|
|
672
|
+
{ "command": "workbench.action.editorActionsDefault", "title": "Default Editor Actions", "description": "Restore default editor actions", "category": "Layout Management" },
|
|
673
|
+
{ "command": "workbench.action.hideEditorActions", "title": "Hide Editor Actions", "description": "Hide editor actions", "category": "Layout Management" },
|
|
674
|
+
{ "command": "workbench.action.showEditorActions", "title": "Show Editor Actions", "description": "Show editor actions", "category": "Layout Management" },
|
|
675
|
+
{ "command": "workbench.action.configureEditorTabs", "title": "Configure Editor Tabs", "description": "Configure editor tab settings", "category": "Layout Management" },
|
|
676
|
+
{ "command": "workbench.action.configureEditor", "title": "Configure Editor", "description": "Configure editor settings", "category": "Layout Management" },
|
|
677
|
+
{ "command": "workbench.action.toggleSeparatePinnedEditorTabs", "title": "Toggle Separate Pinned Editor Tabs", "description": "Toggle separate display for pinned editor tabs", "category": "Layout Management" },
|
|
678
|
+
{ "command": "workbench.action.toggleZenMode", "title": "Toggle Zen Mode", "description": "Enter/exit Zen mode", "category": "Layout Management" },
|
|
679
|
+
{ "command": "workbench.action.exitZenMode", "title": "Exit Zen Mode", "description": "Exit Zen mode", "category": "Layout Management" },
|
|
680
|
+
{ "command": "workbench.action.toggleMenuBar", "title": "Toggle Menu Bar", "description": "Show/hide menu bar", "category": "Layout Management" },
|
|
681
|
+
{ "command": "workbench.action.resetViewLocations", "title": "Reset View Locations", "description": "Reset all view locations", "category": "Layout Management" },
|
|
682
|
+
{ "command": "workbench.action.moveView", "title": "Move View", "description": "Move a view", "category": "Layout Management" },
|
|
683
|
+
{ "command": "workbench.action.moveFocusedView", "title": "Move Focused View", "description": "Move the focused view", "category": "Layout Management" },
|
|
684
|
+
{ "command": "workbench.action.resetFocusedViewLocation", "title": "Reset Focused View Location", "description": "Reset location of focused view", "category": "Layout Management" },
|
|
685
|
+
{ "command": "workbench.action.increaseViewSize", "title": "Increase View Size", "description": "Increase view size", "category": "Layout Management" },
|
|
686
|
+
{ "command": "workbench.action.increaseViewWidth", "title": "Increase View Width", "description": "Increase view width", "category": "Layout Management" },
|
|
687
|
+
{ "command": "workbench.action.increaseViewHeight", "title": "Increase View Height", "description": "Increase view height", "category": "Layout Management" },
|
|
688
|
+
{ "command": "workbench.action.decreaseViewSize", "title": "Decrease View Size", "description": "Decrease view size", "category": "Layout Management" },
|
|
689
|
+
{ "command": "workbench.action.decreaseViewWidth", "title": "Decrease View Width", "description": "Decrease view width", "category": "Layout Management" },
|
|
690
|
+
{ "command": "workbench.action.decreaseViewHeight", "title": "Decrease View Height", "description": "Decrease view height", "category": "Layout Management" },
|
|
691
|
+
{ "command": "workbench.action.alignQuickInputTop", "title": "Align Quick Input Top", "description": "Align quick input to top", "category": "Layout Management" },
|
|
692
|
+
{ "command": "workbench.action.alignQuickInputCenter", "title": "Align Quick Input Center", "description": "Align quick input to center", "category": "Layout Management" },
|
|
693
|
+
{ "command": "workbench.action.customizeLayout", "title": "Customize Layout", "description": "Customize workspace layout", "category": "Layout Management" }
|
|
694
|
+
];
|
|
695
|
+
|
|
696
|
+
// List Navigation
|
|
697
|
+
const listCommands = [
|
|
698
|
+
{ "command": "list.focusDown", "title": "List: Focus Down", "description": "Focus next item in list", "category": "List Navigation" },
|
|
699
|
+
{ "command": "list.focusUp", "title": "List: Focus Up", "description": "Focus previous item in list", "category": "List Navigation" },
|
|
700
|
+
{ "command": "list.focusAnyDown", "title": "List: Focus Any Down", "description": "Focus any next item in list", "category": "List Navigation" },
|
|
701
|
+
{ "command": "list.focusAnyUp", "title": "List: Focus Any Up", "description": "Focus any previous item in list", "category": "List Navigation" },
|
|
702
|
+
{ "command": "list.focusPageDown", "title": "List: Focus Page Down", "description": "Focus page down in list", "category": "List Navigation" },
|
|
703
|
+
{ "command": "list.focusPageUp", "title": "List: Focus Page Up", "description": "Focus page up in list", "category": "List Navigation" },
|
|
704
|
+
{ "command": "list.focusFirst", "title": "List: Focus First", "description": "Focus first item in list", "category": "List Navigation" },
|
|
705
|
+
{ "command": "list.focusLast", "title": "List: Focus Last", "description": "Focus last item in list", "category": "List Navigation" },
|
|
706
|
+
{ "command": "list.focusAnyFirst", "title": "List: Focus Any First", "description": "Focus any first item in list", "category": "List Navigation" },
|
|
707
|
+
{ "command": "list.focusAnyLast", "title": "List: Focus Any Last", "description": "Focus any last item in list", "category": "List Navigation" },
|
|
708
|
+
{ "command": "list.expandSelectionDown", "title": "List: Expand Selection Down", "description": "Expand selection downward", "category": "List Navigation" },
|
|
709
|
+
{ "command": "list.expandSelectionUp", "title": "List: Expand Selection Up", "description": "Expand selection upward", "category": "List Navigation" },
|
|
710
|
+
{ "command": "list.collapse", "title": "List: Collapse", "description": "Collapse list item", "category": "List Navigation" },
|
|
711
|
+
{ "command": "list.stickyScroll.collapse", "title": "List: Collapse Sticky Scroll", "description": "Collapse sticky scroll in list", "category": "List Navigation" },
|
|
712
|
+
{ "command": "list.collapseAll", "title": "List: Collapse All", "description": "Collapse all list items", "category": "List Navigation" },
|
|
713
|
+
{ "command": "list.collapseAllToFocus", "title": "List: Collapse All to Focus", "description": "Collapse all items to focused item", "category": "List Navigation" },
|
|
714
|
+
{ "command": "list.focusParent", "title": "List: Focus Parent", "description": "Focus parent item in list", "category": "List Navigation" },
|
|
715
|
+
{ "command": "list.expand", "title": "List: Expand", "description": "Expand list item", "category": "List Navigation" },
|
|
716
|
+
{ "command": "list.select", "title": "List: Select", "description": "Select list item", "category": "List Navigation" },
|
|
717
|
+
{ "command": "list.stickyScrollselect", "title": "List: Select Sticky Scroll", "description": "Select sticky scroll item", "category": "List Navigation" },
|
|
718
|
+
{ "command": "list.selectAndPreserveFocus", "title": "List: Select and Preserve Focus", "description": "Select item without moving focus", "category": "List Navigation" },
|
|
719
|
+
{ "command": "list.selectAll", "title": "List: Select All", "description": "Select all list items", "category": "List Navigation" },
|
|
720
|
+
{ "command": "list.toggleSelection", "title": "List: Toggle Selection", "description": "Toggle item selection", "category": "List Navigation" },
|
|
721
|
+
{ "command": "list.showHover", "title": "List: Show Hover", "description": "Show hover for list item", "category": "List Navigation" },
|
|
722
|
+
{ "command": "list.toggleExpand", "title": "List: Toggle Expand", "description": "Toggle expand/collapse", "category": "List Navigation" },
|
|
723
|
+
{ "command": "list.stickyScrolltoggleExpand", "title": "List: Toggle Sticky Scroll Expand", "description": "Toggle sticky scroll expansion", "category": "List Navigation" },
|
|
724
|
+
{ "command": "list.clear", "title": "List: Clear", "description": "Clear list", "category": "List Navigation" },
|
|
725
|
+
{ "command": "list.triggerTypeNavigation", "title": "List: Trigger Type Navigation", "description": "Trigger type-based navigation", "category": "List Navigation" },
|
|
726
|
+
{ "command": "list.toggleFindMode", "title": "List: Toggle Find Mode", "description": "Toggle find mode in list", "category": "List Navigation" },
|
|
727
|
+
{ "command": "list.toggleFindMatchType", "title": "List: Toggle Find Match Type", "description": "Toggle find match type", "category": "List Navigation" },
|
|
728
|
+
{ "command": "list.toggleKeyboardNavigation", "title": "List: Toggle Keyboard Navigation", "description": "Toggle keyboard navigation", "category": "List Navigation" },
|
|
729
|
+
{ "command": "list.toggleFilterOnType", "title": "List: Toggle Filter on Type", "description": "Toggle filtering while typing", "category": "List Navigation" },
|
|
730
|
+
{ "command": "list.find", "title": "List: Find", "description": "Find in list", "category": "List Navigation" },
|
|
731
|
+
{ "command": "list.closeFind", "title": "List: Close Find", "description": "Close find in list", "category": "List Navigation" },
|
|
732
|
+
{ "command": "list.scrollUp", "title": "List: Scroll Up", "description": "Scroll list up", "category": "List Navigation" },
|
|
733
|
+
{ "command": "list.scrollDown", "title": "List: Scroll Down", "description": "Scroll list down", "category": "List Navigation" },
|
|
734
|
+
{ "command": "list.scrollLeft", "title": "List: Scroll Left", "description": "Scroll list left", "category": "List Navigation" },
|
|
735
|
+
{ "command": "list.scrollRight", "title": "List: Scroll Right", "description": "Scroll list right", "category": "List Navigation" },
|
|
736
|
+
{ "command": "tree.toggleStickyScroll", "title": "Tree: Toggle Sticky Scroll", "description": "Toggle sticky scroll in tree", "category": "List Navigation" }
|
|
737
|
+
];
|
|
738
|
+
|
|
739
|
+
// Workbench Navigation
|
|
740
|
+
const workbenchNavigationCommands = [
|
|
741
|
+
{ "command": "workbench.action.navigateLeft", "title": "Navigate Left", "description": "Navigate to left pane", "category": "Workbench Navigation" },
|
|
742
|
+
{ "command": "workbench.action.navigateRight", "title": "Navigate Right", "description": "Navigate to right pane", "category": "Workbench Navigation" },
|
|
743
|
+
{ "command": "workbench.action.navigateUp", "title": "Navigate Up", "description": "Navigate to upper pane", "category": "Workbench Navigation" },
|
|
744
|
+
{ "command": "workbench.action.navigateDown", "title": "Navigate Down", "description": "Navigate to lower pane", "category": "Workbench Navigation" },
|
|
745
|
+
{ "command": "workbench.action.focusNextPart", "title": "Focus Next Part", "description": "Focus next workbench part", "category": "Workbench Navigation" },
|
|
746
|
+
{ "command": "workbench.action.focusPreviousPart", "title": "Focus Previous Part", "description": "Focus previous workbench part", "category": "Workbench Navigation" }
|
|
747
|
+
];
|
|
748
|
+
|
|
749
|
+
// Window Management
|
|
750
|
+
const windowCommands = [
|
|
751
|
+
{ "command": "workbench.action.newWindow", "title": "New Window", "description": "Open new VS Code window", "category": "Window Management" },
|
|
752
|
+
{ "command": "workbench.action.toggleFullScreen", "title": "Toggle Full Screen", "description": "Toggle full screen mode", "category": "Window Management" },
|
|
753
|
+
{ "command": "workbench.action.quickOpenRecent", "title": "Quick Open Recent", "description": "Quick open recent files", "category": "Window Management" },
|
|
754
|
+
{ "command": "workbench.action.openRecent", "title": "Open Recent", "description": "Open recent files dialog", "category": "Window Management" },
|
|
755
|
+
{ "command": "workbench.action.reloadWindow", "title": "Reload Window", "description": "Reload current window", "category": "Window Management" },
|
|
756
|
+
{ "command": "workbench.action.showAboutDialog", "title": "Show About Dialog", "description": "Show about VS Code dialog", "category": "Window Management" },
|
|
757
|
+
{ "command": "workbench.action.blur", "title": "Blur", "description": "Remove focus from active element", "category": "Window Management" },
|
|
758
|
+
{ "command": "workbench.action.quickOpenNavigateNextInRecentFilesPicker", "title": "Navigate Next in Recent Files", "description": "Navigate next in recent files picker", "category": "Window Management" },
|
|
759
|
+
{ "command": "workbench.action.quickOpenNavigatePreviousInRecentFilesPicker", "title": "Navigate Previous in Recent Files", "description": "Navigate previous in recent files picker", "category": "Window Management" },
|
|
760
|
+
{ "command": "workbench.action.toggleConfirmBeforeClose", "title": "Toggle Confirm Before Close", "description": "Toggle confirmation before closing window", "category": "Window Management" }
|
|
761
|
+
];
|
|
762
|
+
|
|
763
|
+
// File/Folder Operations
|
|
764
|
+
const fileFolderCommands = [
|
|
765
|
+
{ "command": "workbench.action.files.openFileFolderInNewWindow", "title": "Open File/Folder in New Window", "description": "Open file or folder in new window", "category": "File/Folder Operations" },
|
|
766
|
+
{ "command": "workbench.action.files.openFolderInNewWindow", "title": "Open Folder in New Window", "description": "Open folder in new window", "category": "File/Folder Operations" },
|
|
767
|
+
{ "command": "workbench.action.files.openFileInNewWindow", "title": "Open File in New Window", "description": "Open file in new window", "category": "File/Folder Operations" },
|
|
768
|
+
{ "command": "workbench.action.openWorkspaceInNewWindow", "title": "Open Workspace in New Window", "description": "Open workspace in new window", "category": "File/Folder Operations" },
|
|
769
|
+
{ "command": "addRootFolder", "title": "Add Root Folder", "description": "Add root folder to workspace", "category": "File/Folder Operations" },
|
|
770
|
+
{ "command": "setRootFolder", "title": "Set Root Folder", "description": "Set root folder", "category": "File/Folder Operations" },
|
|
771
|
+
{ "command": "vscode.openFolder", "title": "Open Folder", "description": "Open folder", "category": "File/Folder Operations" },
|
|
772
|
+
{ "command": "vscode.newWindow", "title": "New Window", "description": "Create new window", "category": "File/Folder Operations" },
|
|
773
|
+
{ "command": "vscode.removeFromRecentlyOpened", "title": "Remove from Recently Opened", "description": "Remove item from recently opened list", "category": "File/Folder Operations" },
|
|
774
|
+
{ "command": "workbench.action.addRootFolder", "title": "Add Root Folder", "description": "Add root folder to workspace", "category": "File/Folder Operations" },
|
|
775
|
+
{ "command": "workbench.action.removeRootFolder", "title": "Remove Root Folder", "description": "Remove root folder from workspace", "category": "File/Folder Operations" },
|
|
776
|
+
{ "command": "workbench.action.files.openFile", "title": "Open File", "description": "Open file", "category": "File/Folder Operations" },
|
|
777
|
+
{ "command": "workbench.action.files.openFolder", "title": "Open Folder", "description": "Open folder", "category": "File/Folder Operations" },
|
|
778
|
+
{ "command": "workbench.action.files.openFolderViaWorkspace", "title": "Open Folder via Workspace", "description": "Open folder via workspace", "category": "File/Folder Operations" },
|
|
779
|
+
{ "command": "workbench.action.files.openFileFolder", "title": "Open File/Folder", "description": "Open file or folder", "category": "File/Folder Operations" },
|
|
780
|
+
{ "command": "workbench.action.openWorkspace", "title": "Open Workspace", "description": "Open workspace", "category": "File/Folder Operations" },
|
|
781
|
+
{ "command": "workbench.action.openWorkspaceConfigFile", "title": "Open Workspace Config File", "description": "Open workspace configuration file", "category": "File/Folder Operations" },
|
|
782
|
+
{ "command": "workbench.action.closeFolder", "title": "Close Folder", "description": "Close current folder/workspace", "category": "File/Folder Operations" },
|
|
783
|
+
{ "command": "workbench.action.saveWorkspaceAs", "title": "Save Workspace As", "description": "Save workspace as new file", "category": "File/Folder Operations" },
|
|
784
|
+
{ "command": "workbench.action.duplicateWorkspaceInNewWindow", "title": "Duplicate Workspace in New Window", "description": "Duplicate workspace in new window", "category": "File/Folder Operations" }
|
|
785
|
+
];
|
|
786
|
+
|
|
787
|
+
// Quick Open/Input
|
|
788
|
+
const quickOpenCommands = [
|
|
789
|
+
{ "command": "workbench.action.closeQuickOpen", "title": "Close Quick Open", "description": "Close quick open panel", "category": "Quick Open" },
|
|
790
|
+
{ "command": "workbench.action.acceptSelectedQuickOpenItem", "title": "Accept Selected Quick Open Item", "description": "Accept selected quick open item", "category": "Quick Open" },
|
|
791
|
+
{ "command": "workbench.action.alternativeAcceptSelectedQuickOpenItem", "title": "Alternative Accept Quick Open Item", "description": "Alternative accept quick open item", "category": "Quick Open" },
|
|
792
|
+
{ "command": "workbench.action.focusQuickOpen", "title": "Focus Quick Open", "description": "Focus quick open panel", "category": "Quick Open" },
|
|
793
|
+
{ "command": "workbench.action.quickOpenNavigateNextInFilePicker", "title": "Navigate Next in File Picker", "description": "Navigate next in file picker", "category": "Quick Open" },
|
|
794
|
+
{ "command": "workbench.action.quickOpenNavigatePreviousInFilePicker", "title": "Navigate Previous in File Picker", "description": "Navigate previous in file picker", "category": "Quick Open" },
|
|
795
|
+
{ "command": "workbench.action.quickPickManyToggle", "title": "Quick Pick Many Toggle", "description": "Toggle multi-select in quick pick", "category": "Quick Open" },
|
|
796
|
+
{ "command": "workbench.action.quickInputBack", "title": "Quick Input Back", "description": "Go back in quick input", "category": "Quick Open" },
|
|
797
|
+
{ "command": "workbench.action.quickOpen", "title": "Quick Open", "description": "Open quick open panel", "category": "Quick Open" },
|
|
798
|
+
{ "command": "workbench.action.quickOpenWithModes", "title": "Quick Open with Modes", "description": "Open quick open with modes", "category": "Quick Open" },
|
|
799
|
+
{ "command": "workbench.action.quickOpenPreviousEditor", "title": "Quick Open Previous Editor", "description": "Quick open previous editor", "category": "Quick Open" },
|
|
800
|
+
{ "command": "workbench.action.quickOpenSelectNext", "title": "Quick Open Select Next", "description": "Select next item in quick open", "category": "Quick Open" },
|
|
801
|
+
{ "command": "workbench.action.quickOpenSelectPrevious", "title": "Quick Open Select Previous", "description": "Select previous item in quick open", "category": "Quick Open" },
|
|
802
|
+
{ "command": "workbench.action.quickOpenNavigateNext", "title": "Quick Open Navigate Next", "description": "Navigate next in quick open", "category": "Quick Open" },
|
|
803
|
+
{ "command": "workbench.action.quickOpenNavigatePrevious", "title": "Quick Open Navigate Previous", "description": "Navigate previous in quick open", "category": "Quick Open" },
|
|
804
|
+
{ "command": "quickInput.pageNext", "title": "Quick Input Page Next", "description": "Next page in quick input", "category": "Quick Open" },
|
|
805
|
+
{ "command": "quickInput.pagePrevious", "title": "Quick Input Page Previous", "description": "Previous page in quick input", "category": "Quick Open" },
|
|
806
|
+
{ "command": "quickInput.first", "title": "Quick Input First", "description": "First item in quick input", "category": "Quick Open" },
|
|
807
|
+
{ "command": "quickInput.last", "title": "Quick Input Last", "description": "Last item in quick input", "category": "Quick Open" },
|
|
808
|
+
{ "command": "quickInput.next", "title": "Quick Input Next", "description": "Next item in quick input", "category": "Quick Open" },
|
|
809
|
+
{ "command": "quickInput.previous", "title": "Quick Input Previous", "description": "Previous item in quick input", "category": "Quick Open" },
|
|
810
|
+
{ "command": "quickInput.nextSeparatorWithQuickAccessFallback", "title": "Quick Input Next Separator with Fallback", "description": "Next separator with quick access fallback", "category": "Quick Open" },
|
|
811
|
+
{ "command": "quickInput.nextSeparator", "title": "Quick Input Next Separator", "description": "Next separator in quick input", "category": "Quick Open" },
|
|
812
|
+
{ "command": "quickInput.previousSeparatorWithQuickAccessFallback", "title": "Quick Input Previous Separator with Fallback", "description": "Previous separator with quick access fallback", "category": "Quick Open" },
|
|
813
|
+
{ "command": "quickInput.previousSeparator", "title": "Quick Input Previous Separator", "description": "Previous separator in quick input", "category": "Quick Open" },
|
|
814
|
+
{ "command": "quickInput.accept", "title": "Quick Input Accept", "description": "Accept quick input", "category": "Quick Open" },
|
|
815
|
+
{ "command": "quickInput.acceptInBackground", "title": "Quick Input Accept in Background", "description": "Accept quick input in background", "category": "Quick Open" },
|
|
816
|
+
{ "command": "quickInput.hide", "title": "Quick Input Hide", "description": "Hide quick input", "category": "Quick Open" },
|
|
817
|
+
{ "command": "quickInput.toggleHover", "title": "Quick Input Toggle Hover", "description": "Toggle hover in quick input", "category": "Quick Open" },
|
|
818
|
+
{ "command": "getContextKeyInfo", "title": "Get Context Key Info", "description": "Get context key information", "category": "Quick Open" },
|
|
819
|
+
{ "command": "workbench.action.quickOpenNavigateNextInEditorPicker", "title": "Navigate Next in Editor Picker", "description": "Navigate next in editor picker", "category": "Quick Open" },
|
|
820
|
+
{ "command": "workbench.action.quickOpenNavigatePreviousInEditorPicker", "title": "Navigate Previous in Editor Picker", "description": "Navigate previous in editor picker", "category": "Quick Open" }
|
|
821
|
+
];
|
|
822
|
+
|
|
823
|
+
// Editor Management
|
|
824
|
+
const editorManagementCommands = [
|
|
825
|
+
{ "command": "workbench.action.editor.changeLanguageMode", "title": "Change Language Mode", "description": "Change editor language mode", "category": "Editor Management" },
|
|
826
|
+
{ "command": "workbench.action.editor.changeEOL", "title": "Change End of Line", "description": "Change end of line character", "category": "Editor Management" },
|
|
827
|
+
{ "command": "workbench.action.editor.changeEncoding", "title": "Change Encoding", "description": "Change file encoding", "category": "Editor Management" },
|
|
828
|
+
{ "command": "workbench.action.navigateForward", "title": "Navigate Forward", "description": "Navigate forward in editor history", "category": "Editor Management" },
|
|
829
|
+
{ "command": "workbench.action.navigateBack", "title": "Navigate Back", "description": "Navigate back in editor history", "category": "Editor Management" },
|
|
830
|
+
{ "command": "workbench.action.nextEditor", "title": "Next Editor", "description": "Switch to next editor", "category": "Editor Management" },
|
|
831
|
+
{ "command": "workbench.action.previousEditor", "title": "Previous Editor", "description": "Switch to previous editor", "category": "Editor Management" },
|
|
832
|
+
{ "command": "workbench.action.nextEditorInGroup", "title": "Next Editor in Group", "description": "Next editor in current group", "category": "Editor Management" },
|
|
833
|
+
{ "command": "workbench.action.previousEditorInGroup", "title": "Previous Editor in Group", "description": "Previous editor in current group", "category": "Editor Management" },
|
|
834
|
+
{ "command": "workbench.action.firstEditorInGroup", "title": "First Editor in Group", "description": "First editor in current group", "category": "Editor Management" },
|
|
835
|
+
{ "command": "workbench.action.lastEditorInGroup", "title": "Last Editor in Group", "description": "Last editor in current group", "category": "Editor Management" },
|
|
836
|
+
{ "command": "workbench.action.openNextRecentlyUsedEditor", "title": "Open Next Recently Used Editor", "description": "Open next recently used editor", "category": "Editor Management" },
|
|
837
|
+
{ "command": "workbench.action.openPreviousRecentlyUsedEditor", "title": "Open Previous Recently Used Editor", "description": "Open previous recently used editor", "category": "Editor Management" },
|
|
838
|
+
{ "command": "workbench.action.openNextRecentlyUsedEditorInGroup", "title": "Open Next Recently Used Editor in Group", "description": "Open next recently used editor in group", "category": "Editor Management" },
|
|
839
|
+
{ "command": "workbench.action.openPreviousRecentlyUsedEditorInGroup", "title": "Open Previous Recently Used Editor in Group", "description": "Open previous recently used editor in group", "category": "Editor Management" },
|
|
840
|
+
{ "command": "workbench.action.reopenClosedEditor", "title": "Reopen Closed Editor", "description": "Reopen last closed editor", "category": "Editor Management" },
|
|
841
|
+
{ "command": "workbench.action.clearRecentFiles", "title": "Clear Recent Files", "description": "Clear recent files list", "category": "Editor Management" },
|
|
842
|
+
{ "command": "workbench.action.showAllEditors", "title": "Show All Editors", "description": "Show all open editors", "category": "Editor Management" },
|
|
843
|
+
{ "command": "workbench.action.showAllEditorsByMostRecentlyUsed", "title": "Show All Editors by MRU", "description": "Show all editors by most recently used", "category": "Editor Management" },
|
|
844
|
+
{ "command": "workbench.action.showEditorsInActiveGroup", "title": "Show Editors in Active Group", "description": "Show editors in active group", "category": "Editor Management" },
|
|
845
|
+
{ "command": "workbench.action.closeAllEditors", "title": "Close All Editors", "description": "Close all open editors", "category": "Editor Management" },
|
|
846
|
+
{ "command": "workbench.action.closeAllGroups", "title": "Close All Groups", "description": "Close all editor groups", "category": "Editor Management" },
|
|
847
|
+
{ "command": "workbench.action.closeEditorsToTheLeft", "title": "Close Editors to the Left", "description": "Close editors to the left", "category": "Editor Management" },
|
|
848
|
+
{ "command": "workbench.action.closeEditorsInOtherGroups", "title": "Close Editors in Other Groups", "description": "Close editors in other groups", "category": "Editor Management" },
|
|
849
|
+
{ "command": "workbench.action.closeEditorInAllGroups", "title": "Close Editor in All Groups", "description": "Close editor in all groups", "category": "Editor Management" },
|
|
850
|
+
{ "command": "workbench.action.revertAndCloseActiveEditor", "title": "Revert and Close Active Editor", "description": "Revert changes and close active editor", "category": "Editor Management" },
|
|
851
|
+
{ "command": "workbench.action.clearEditorHistory", "title": "Clear Editor History", "description": "Clear editor navigation history", "category": "Editor Management" },
|
|
852
|
+
{ "command": "workbench.action.clearEditorHistoryWithoutConfirm", "title": "Clear Editor History Without Confirm", "description": "Clear editor history without confirmation", "category": "Editor Management" },
|
|
853
|
+
{ "command": "workbench.action.quickOpenPreviousRecentlyUsedEditor", "title": "Quick Open Previous Recently Used Editor", "description": "Quick open previous recently used editor", "category": "Editor Management" },
|
|
854
|
+
{ "command": "workbench.action.quickOpenLeastRecentlyUsedEditor", "title": "Quick Open Least Recently Used Editor", "description": "Quick open least recently used editor", "category": "Editor Management" },
|
|
855
|
+
{ "command": "workbench.action.quickOpenPreviousRecentlyUsedEditorInGroup", "title": "Quick Open Previous Recently Used Editor in Group", "description": "Quick open previous recently used editor in group", "category": "Editor Management" },
|
|
856
|
+
{ "command": "workbench.action.quickOpenLeastRecentlyUsedEditorInGroup", "title": "Quick Open Least Recently Used Editor in Group", "description": "Quick open least recently used editor in group", "category": "Editor Management" },
|
|
857
|
+
{ "command": "workbench.action.openPreviousEditorFromHistory", "title": "Open Previous Editor from History", "description": "Open previous editor from history", "category": "Editor Management" }
|
|
858
|
+
];
|
|
859
|
+
|
|
860
|
+
// Editor Group/Split Management
|
|
861
|
+
const editorGroupCommands = [
|
|
862
|
+
{ "command": "workbench.action.splitEditor", "title": "Split Editor", "description": "Split active editor", "category": "Editor Groups" },
|
|
863
|
+
{ "command": "workbench.action.splitEditorOrthogonal", "title": "Split Editor Orthogonal", "description": "Split editor orthogonally", "category": "Editor Groups" },
|
|
864
|
+
{ "command": "workbench.action.splitEditorLeft", "title": "Split Editor Left", "description": "Split editor to left", "category": "Editor Groups" },
|
|
865
|
+
{ "command": "workbench.action.splitEditorRight", "title": "Split Editor Right", "description": "Split editor to right", "category": "Editor Groups" },
|
|
866
|
+
{ "command": "workbench.action.splitEditorUp", "title": "Split Editor Up", "description": "Split editor upward", "category": "Editor Groups" },
|
|
867
|
+
{ "command": "workbench.action.splitEditorDown", "title": "Split Editor Down", "description": "Split editor downward", "category": "Editor Groups" },
|
|
868
|
+
{ "command": "workbench.action.joinTwoGroups", "title": "Join Two Groups", "description": "Join two editor groups", "category": "Editor Groups" },
|
|
869
|
+
{ "command": "workbench.action.joinAllGroups", "title": "Join All Groups", "description": "Join all editor groups", "category": "Editor Groups" },
|
|
870
|
+
{ "command": "workbench.action.navigateEditorGroups", "title": "Navigate Editor Groups", "description": "Navigate between editor groups", "category": "Editor Groups" },
|
|
871
|
+
{ "command": "workbench.action.evenEditorWidths", "title": "Even Editor Widths", "description": "Make editor widths even", "category": "Editor Groups" },
|
|
872
|
+
{ "command": "workbench.action.toggleEditorWidths", "title": "Toggle Editor Widths", "description": "Toggle between editor width modes", "category": "Editor Groups" },
|
|
873
|
+
{ "command": "workbench.action.maximizeEditorHideSidebar", "title": "Maximize Editor Hide Sidebar", "description": "Maximize editor and hide sidebar", "category": "Editor Groups" },
|
|
874
|
+
{ "command": "workbench.action.toggleMaximizeEditorGroup", "title": "Toggle Maximize Editor Group", "description": "Toggle editor group maximization", "category": "Editor Groups" },
|
|
875
|
+
{ "command": "workbench.action.minimizeOtherEditors", "title": "Minimize Other Editors", "description": "Minimize other editors", "category": "Editor Groups" },
|
|
876
|
+
{ "command": "workbench.action.minimizeOtherEditorsHideSidebar", "title": "Minimize Other Editors Hide Sidebar", "description": "Minimize other editors and hide sidebar", "category": "Editor Groups" },
|
|
877
|
+
{ "command": "workbench.action.moveEditorLeftInGroup", "title": "Move Editor Left in Group", "description": "Move editor left within group", "category": "Editor Groups" },
|
|
878
|
+
{ "command": "workbench.action.moveEditorRightInGroup", "title": "Move Editor Right in Group", "description": "Move editor right within group", "category": "Editor Groups" },
|
|
879
|
+
{ "command": "workbench.action.moveActiveEditorGroupLeft", "title": "Move Active Editor Group Left", "description": "Move active editor group left", "category": "Editor Groups" },
|
|
880
|
+
{ "command": "workbench.action.moveActiveEditorGroupRight", "title": "Move Active Editor Group Right", "description": "Move active editor group right", "category": "Editor Groups" },
|
|
881
|
+
{ "command": "workbench.action.moveActiveEditorGroupUp", "title": "Move Active Editor Group Up", "description": "Move active editor group up", "category": "Editor Groups" },
|
|
882
|
+
{ "command": "workbench.action.moveActiveEditorGroupDown", "title": "Move Active Editor Group Down", "description": "Move active editor group down", "category": "Editor Groups" },
|
|
883
|
+
{ "command": "workbench.action.duplicateActiveEditorGroupLeft", "title": "Duplicate Active Editor Group Left", "description": "Duplicate active editor group to left", "category": "Editor Groups" },
|
|
884
|
+
{ "command": "workbench.action.duplicateActiveEditorGroupRight", "title": "Duplicate Active Editor Group Right", "description": "Duplicate active editor group to right", "category": "Editor Groups" },
|
|
885
|
+
{ "command": "workbench.action.duplicateActiveEditorGroupUp", "title": "Duplicate Active Editor Group Up", "description": "Duplicate active editor group up", "category": "Editor Groups" },
|
|
886
|
+
{ "command": "workbench.action.duplicateActiveEditorGroupDown", "title": "Duplicate Active Editor Group Down", "description": "Duplicate active editor group down", "category": "Editor Groups" },
|
|
887
|
+
{ "command": "workbench.action.moveEditorToPreviousGroup", "title": "Move Editor to Previous Group", "description": "Move editor to previous group", "category": "Editor Groups" },
|
|
888
|
+
{ "command": "workbench.action.moveEditorToNextGroup", "title": "Move Editor to Next Group", "description": "Move editor to next group", "category": "Editor Groups" },
|
|
889
|
+
{ "command": "workbench.action.moveEditorToFirstGroup", "title": "Move Editor to First Group", "description": "Move editor to first group", "category": "Editor Groups" },
|
|
890
|
+
{ "command": "workbench.action.moveEditorToLastGroup", "title": "Move Editor to Last Group", "description": "Move editor to last group", "category": "Editor Groups" },
|
|
891
|
+
{ "command": "workbench.action.moveEditorToLeftGroup", "title": "Move Editor to Left Group", "description": "Move editor to left group", "category": "Editor Groups" },
|
|
892
|
+
{ "command": "workbench.action.moveEditorToRightGroup", "title": "Move Editor to Right Group", "description": "Move editor to right group", "category": "Editor Groups" },
|
|
893
|
+
{ "command": "workbench.action.moveEditorToAboveGroup", "title": "Move Editor to Above Group", "description": "Move editor to above group", "category": "Editor Groups" },
|
|
894
|
+
{ "command": "workbench.action.moveEditorToBelowGroup", "title": "Move Editor to Below Group", "description": "Move editor to below group", "category": "Editor Groups" },
|
|
895
|
+
{ "command": "workbench.action.splitEditorToPreviousGroup", "title": "Split Editor to Previous Group", "description": "Split editor to previous group", "category": "Editor Groups" },
|
|
896
|
+
{ "command": "workbench.action.splitEditorToNextGroup", "title": "Split Editor to Next Group", "description": "Split editor to next group", "category": "Editor Groups" },
|
|
897
|
+
{ "command": "workbench.action.splitEditorToFirstGroup", "title": "Split Editor to First Group", "description": "Split editor to first group", "category": "Editor Groups" },
|
|
898
|
+
{ "command": "workbench.action.splitEditorToLastGroup", "title": "Split Editor to Last Group", "description": "Split editor to last group", "category": "Editor Groups" },
|
|
899
|
+
{ "command": "workbench.action.splitEditorToLeftGroup", "title": "Split Editor to Left Group", "description": "Split editor to left group", "category": "Editor Groups" },
|
|
900
|
+
{ "command": "workbench.action.splitEditorToRightGroup", "title": "Split Editor to Right Group", "description": "Split editor to right group", "category": "Editor Groups" },
|
|
901
|
+
{ "command": "workbench.action.splitEditorToAboveGroup", "title": "Split Editor to Above Group", "description": "Split editor to above group", "category": "Editor Groups" },
|
|
902
|
+
{ "command": "workbench.action.splitEditorToBelowGroup", "title": "Split Editor to Below Group", "description": "Split editor to below group", "category": "Editor Groups" },
|
|
903
|
+
{ "command": "workbench.action.focusActiveEditorGroup", "title": "Focus Active Editor Group", "description": "Focus active editor group", "category": "Editor Groups" },
|
|
904
|
+
{ "command": "workbench.action.focusFirstEditorGroup", "title": "Focus First Editor Group", "description": "Focus first editor group", "category": "Editor Groups" },
|
|
905
|
+
{ "command": "workbench.action.focusLastEditorGroup", "title": "Focus Last Editor Group", "description": "Focus last editor group", "category": "Editor Groups" },
|
|
906
|
+
{ "command": "workbench.action.focusPreviousGroup", "title": "Focus Previous Group", "description": "Focus previous editor group", "category": "Editor Groups" },
|
|
907
|
+
{ "command": "workbench.action.focusNextGroup", "title": "Focus Next Group", "description": "Focus next editor group", "category": "Editor Groups" },
|
|
908
|
+
{ "command": "workbench.action.focusLeftGroup", "title": "Focus Left Group", "description": "Focus left editor group", "category": "Editor Groups" },
|
|
909
|
+
{ "command": "workbench.action.focusRightGroup", "title": "Focus Right Group", "description": "Focus right editor group", "category": "Editor Groups" },
|
|
910
|
+
{ "command": "workbench.action.focusAboveGroup", "title": "Focus Above Group", "description": "Focus above editor group", "category": "Editor Groups" },
|
|
911
|
+
{ "command": "workbench.action.focusBelowGroup", "title": "Focus Below Group", "description": "Focus below editor group", "category": "Editor Groups" },
|
|
912
|
+
{ "command": "workbench.action.newGroupLeft", "title": "New Group Left", "description": "Create new editor group to left", "category": "Editor Groups" },
|
|
913
|
+
{ "command": "workbench.action.newGroupRight", "title": "New Group Right", "description": "Create new editor group to right", "category": "Editor Groups" },
|
|
914
|
+
{ "command": "workbench.action.newGroupAbove", "title": "New Group Above", "description": "Create new editor group above", "category": "Editor Groups" },
|
|
915
|
+
{ "command": "workbench.action.newGroupBelow", "title": "New Group Below", "description": "Create new editor group below", "category": "Editor Groups" },
|
|
916
|
+
{ "command": "workbench.action.navigateLast", "title": "Navigate Last", "description": "Navigate to last location", "category": "Editor Groups" },
|
|
917
|
+
{ "command": "workbench.action.navigateForwardInEditLocations", "title": "Navigate Forward in Edit Locations", "description": "Navigate forward in edit locations", "category": "Editor Groups" },
|
|
918
|
+
{ "command": "workbench.action.navigateBackInEditLocations", "title": "Navigate Back in Edit Locations", "description": "Navigate back in edit locations", "category": "Editor Groups" },
|
|
919
|
+
{ "command": "workbench.action.navigatePreviousInEditLocations", "title": "Navigate Previous in Edit Locations", "description": "Navigate previous in edit locations", "category": "Editor Groups" },
|
|
920
|
+
{ "command": "workbench.action.navigateToLastEditLocation", "title": "Navigate to Last Edit Location", "description": "Navigate to last edit location", "category": "Editor Groups" },
|
|
921
|
+
{ "command": "workbench.action.navigateForwardInNavigationLocations", "title": "Navigate Forward in Navigation Locations", "description": "Navigate forward in navigation locations", "category": "Editor Groups" },
|
|
922
|
+
{ "command": "workbench.action.navigateBackInNavigationLocations", "title": "Navigate Back in Navigation Locations", "description": "Navigate back in navigation locations", "category": "Editor Groups" },
|
|
923
|
+
{ "command": "workbench.action.navigatePreviousInNavigationLocations", "title": "Navigate Previous in Navigation Locations", "description": "Navigate previous in navigation locations", "category": "Editor Groups" },
|
|
924
|
+
{ "command": "workbench.action.navigateToLastNavigationLocation", "title": "Navigate to Last Navigation Location", "description": "Navigate to last navigation location", "category": "Editor Groups" }
|
|
925
|
+
];
|
|
926
|
+
|
|
927
|
+
// Editor Layouts
|
|
928
|
+
const editorLayoutCommands = [
|
|
929
|
+
{ "command": "workbench.action.editorLayoutSingle", "title": "Single Column Layout", "description": "Set single column editor layout", "category": "Editor Layouts" },
|
|
930
|
+
{ "command": "workbench.action.editorLayoutTwoColumns", "title": "Two Columns Layout", "description": "Set two column editor layout", "category": "Editor Layouts" },
|
|
931
|
+
{ "command": "workbench.action.editorLayoutThreeColumns", "title": "Three Columns Layout", "description": "Set three column editor layout", "category": "Editor Layouts" },
|
|
932
|
+
{ "command": "workbench.action.editorLayoutTwoRows", "title": "Two Rows Layout", "description": "Set two row editor layout", "category": "Editor Layouts" },
|
|
933
|
+
{ "command": "workbench.action.editorLayoutThreeRows", "title": "Three Rows Layout", "description": "Set three row editor layout", "category": "Editor Layouts" },
|
|
934
|
+
{ "command": "workbench.action.editorLayoutTwoByTwoGrid", "title": "Two by Two Grid Layout", "description": "Set 2x2 grid editor layout", "category": "Editor Layouts" },
|
|
935
|
+
{ "command": "workbench.action.editorLayoutTwoRowsRight", "title": "Two Rows Right Layout", "description": "Set two rows with right column layout", "category": "Editor Layouts" },
|
|
936
|
+
{ "command": "workbench.action.editorLayoutTwoColumnsBottom", "title": "Two Columns Bottom Layout", "description": "Set two columns with bottom row layout", "category": "Editor Layouts" },
|
|
937
|
+
{ "command": "workbench.action.toggleEditorType", "title": "Toggle Editor Type", "description": "Toggle between editor types", "category": "Editor Layouts" },
|
|
938
|
+
{ "command": "workbench.action.reopenTextEditor", "title": "Reopen Text Editor", "description": "Reopen as text editor", "category": "Editor Layouts" },
|
|
939
|
+
{ "command": "layoutEditorGroups", "title": "Layout Editor Groups", "description": "Layout editor groups", "category": "Editor Layouts" },
|
|
940
|
+
{ "command": "vscode.setEditorLayout", "title": "Set Editor Layout", "description": "Set editor layout", "category": "Editor Layouts" },
|
|
941
|
+
{ "command": "vscode.getEditorLayout", "title": "Get Editor Layout", "description": "Get current editor layout", "category": "Editor Layouts" }
|
|
942
|
+
];
|
|
943
|
+
|
|
944
|
+
// Window/Editor Movement
|
|
945
|
+
const windowEditorMovementCommands = [
|
|
946
|
+
{ "command": "workbench.action.moveEditorToNewWindow", "title": "Move Editor to New Window", "description": "Move editor to new window", "category": "Window/Editor Movement" },
|
|
947
|
+
{ "command": "workbench.action.copyEditorToNewWindow", "title": "Copy Editor to New Window", "description": "Copy editor to new window", "category": "Window/Editor Movement" },
|
|
948
|
+
{ "command": "workbench.action.moveEditorGroupToNewWindow", "title": "Move Editor Group to New Window", "description": "Move editor group to new window", "category": "Window/Editor Movement" },
|
|
949
|
+
{ "command": "workbench.action.copyEditorGroupToNewWindow", "title": "Copy Editor Group to New Window", "description": "Copy editor group to new window", "category": "Window/Editor Movement" },
|
|
950
|
+
{ "command": "workbench.action.restoreEditorsToMainWindow", "title": "Restore Editors to Main Window", "description": "Restore editors to main window", "category": "Window/Editor Movement" },
|
|
951
|
+
{ "command": "workbench.action.newEmptyEditorWindow", "title": "New Empty Editor Window", "description": "Create new empty editor window", "category": "Window/Editor Movement" },
|
|
952
|
+
{ "command": "moveActiveEditor", "title": "Move Active Editor", "description": "Move active editor", "category": "Window/Editor Movement" },
|
|
953
|
+
{ "command": "copyActiveEditor", "title": "Copy Active Editor", "description": "Copy active editor", "category": "Window/Editor Movement" }
|
|
954
|
+
];
|
|
955
|
+
|
|
956
|
+
// Compare Editor
|
|
957
|
+
const compareEditorCommands = [
|
|
958
|
+
{ "command": "workbench.action.compareEditor.openSide", "title": "Compare Editor: Open Side", "description": "Open side in compare editor", "category": "Compare Editor" },
|
|
959
|
+
{ "command": "workbench.action.compareEditor.nextChange", "title": "Compare Editor: Next Change", "description": "Next change in compare editor", "category": "Compare Editor" },
|
|
960
|
+
{ "command": "workbench.action.compareEditor.previousChange", "title": "Compare Editor: Previous Change", "description": "Previous change in compare editor", "category": "Compare Editor" },
|
|
961
|
+
{ "command": "toggle.diff.renderSideBySide", "title": "Toggle Diff Side by Side", "description": "Toggle side-by-side diff view", "category": "Compare Editor" },
|
|
962
|
+
{ "command": "workbench.action.compareEditor.focusPrimarySide", "title": "Compare Editor: Focus Primary Side", "description": "Focus primary side in compare editor", "category": "Compare Editor" },
|
|
963
|
+
{ "command": "workbench.action.compareEditor.focusSecondarySide", "title": "Compare Editor: Focus Secondary Side", "description": "Focus secondary side in compare editor", "category": "Compare Editor" },
|
|
964
|
+
{ "command": "workbench.action.compareEditor.focusOtherSide", "title": "Compare Editor: Focus Other Side", "description": "Focus other side in compare editor", "category": "Compare Editor" },
|
|
965
|
+
{ "command": "toggle.diff.ignoreTrimWhitespace", "title": "Toggle Diff Ignore Trim Whitespace", "description": "Toggle ignore trim whitespace in diff", "category": "Compare Editor" },
|
|
966
|
+
{ "command": "workbench.action.compareEditor.swapSides", "title": "Compare Editor: Swap Sides", "description": "Swap sides in compare editor", "category": "Compare Editor" },
|
|
967
|
+
{ "command": "vscode.open", "title": "Open", "description": "Open resource", "category": "Compare Editor" },
|
|
968
|
+
{ "command": "vscode.diff", "title": "Diff", "description": "Open diff view", "category": "Compare Editor" },
|
|
969
|
+
{ "command": "vscode.changes", "title": "Changes", "description": "Show changes", "category": "Compare Editor" }
|
|
970
|
+
];
|
|
971
|
+
|
|
972
|
+
// Editor Tabs/Index
|
|
973
|
+
const editorTabCommands = [
|
|
974
|
+
{ "command": "workbench.action.openEditorAtIndex", "title": "Open Editor at Index", "description": "Open editor at specific index", "category": "Editor Tabs" },
|
|
975
|
+
{ "command": "workbench.action.openEditorAtIndex1", "title": "Open Editor at Index 1", "description": "Open editor at index 1", "category": "Editor Tabs" },
|
|
976
|
+
{ "command": "workbench.action.openEditorAtIndex2", "title": "Open Editor at Index 2", "description": "Open editor at index 2", "category": "Editor Tabs" },
|
|
977
|
+
{ "command": "workbench.action.openEditorAtIndex3", "title": "Open Editor at Index 3", "description": "Open editor at index 3", "category": "Editor Tabs" },
|
|
978
|
+
{ "command": "workbench.action.openEditorAtIndex4", "title": "Open Editor at Index 4", "description": "Open editor at index 4", "category": "Editor Tabs" },
|
|
979
|
+
{ "command": "workbench.action.openEditorAtIndex5", "title": "Open Editor at Index 5", "description": "Open editor at index 5", "category": "Editor Tabs" },
|
|
980
|
+
{ "command": "workbench.action.openEditorAtIndex6", "title": "Open Editor at Index 6", "description": "Open editor at index 6", "category": "Editor Tabs" },
|
|
981
|
+
{ "command": "workbench.action.openEditorAtIndex7", "title": "Open Editor at Index 7", "description": "Open editor at index 7", "category": "Editor Tabs" },
|
|
982
|
+
{ "command": "workbench.action.openEditorAtIndex8", "title": "Open Editor at Index 8", "description": "Open editor at index 8", "category": "Editor Tabs" },
|
|
983
|
+
{ "command": "workbench.action.openEditorAtIndex9", "title": "Open Editor at Index 9", "description": "Open editor at index 9", "category": "Editor Tabs" },
|
|
984
|
+
{ "command": "workbench.action.closeActiveEditor", "title": "Close Active Editor", "description": "Close active editor", "category": "Editor Tabs" },
|
|
985
|
+
{ "command": "workbench.action.closeActivePinnedEditor", "title": "Close Active Pinned Editor", "description": "Close active pinned editor", "category": "Editor Tabs" },
|
|
986
|
+
{ "command": "workbench.action.closeEditorsInGroup", "title": "Close Editors in Group", "description": "Close all editors in group", "category": "Editor Tabs" },
|
|
987
|
+
{ "command": "workbench.action.closeGroup", "title": "Close Group", "description": "Close editor group", "category": "Editor Tabs" },
|
|
988
|
+
{ "command": "workbench.action.closeUnmodifiedEditors", "title": "Close Unmodified Editors", "description": "Close unmodified editors", "category": "Editor Tabs" },
|
|
989
|
+
{ "command": "workbench.action.closeOtherEditors", "title": "Close Other Editors", "description": "Close other editors", "category": "Editor Tabs" },
|
|
990
|
+
{ "command": "workbench.action.closeEditorsToTheRight", "title": "Close Editors to the Right", "description": "Close editors to the right", "category": "Editor Tabs" },
|
|
991
|
+
{ "command": "workbench.action.reopenWithEditor", "title": "Reopen With Editor", "description": "Reopen with different editor", "category": "Editor Tabs" },
|
|
992
|
+
{ "command": "reopenActiveEditorWith", "title": "Reopen Active Editor With", "description": "Reopen active editor with", "category": "Editor Tabs" },
|
|
993
|
+
{ "command": "workbench.action.closeEditorsAndGroup", "title": "Close Editors and Group", "description": "Close editors and group", "category": "Editor Tabs" },
|
|
994
|
+
{ "command": "workbench.action.keepEditor", "title": "Keep Editor", "description": "Keep editor open", "category": "Editor Tabs" },
|
|
995
|
+
{ "command": "workbench.action.toggleKeepEditors", "title": "Toggle Keep Editors", "description": "Toggle keep editors open", "category": "Editor Tabs" },
|
|
996
|
+
{ "command": "workbench.action.toggleEditorGroupLock", "title": "Toggle Editor Group Lock", "description": "Toggle editor group lock", "category": "Editor Tabs" },
|
|
997
|
+
{ "command": "workbench.action.lockEditorGroup", "title": "Lock Editor Group", "description": "Lock editor group", "category": "Editor Tabs" },
|
|
998
|
+
{ "command": "workbench.action.unlockEditorGroup", "title": "Unlock Editor Group", "description": "Unlock editor group", "category": "Editor Tabs" },
|
|
999
|
+
{ "command": "workbench.action.pinEditor", "title": "Pin Editor", "description": "Pin editor", "category": "Editor Tabs" },
|
|
1000
|
+
{ "command": "workbench.action.unpinEditor", "title": "Unpin Editor", "description": "Unpin editor", "category": "Editor Tabs" },
|
|
1001
|
+
{ "command": "workbench.action.showEditorsInGroup", "title": "Show Editors in Group", "description": "Show editors in group", "category": "Editor Tabs" },
|
|
1002
|
+
{ "command": "workbench.action.splitEditorInGroup", "title": "Split Editor in Group", "description": "Split editor within group", "category": "Editor Tabs" },
|
|
1003
|
+
{ "command": "workbench.action.joinEditorInGroup", "title": "Join Editor in Group", "description": "Join editor in group", "category": "Editor Tabs" },
|
|
1004
|
+
{ "command": "workbench.action.toggleSplitEditorInGroup", "title": "Toggle Split Editor in Group", "description": "Toggle split editor in group", "category": "Editor Tabs" },
|
|
1005
|
+
{ "command": "workbench.action.toggleSplitEditorInGroupLayout", "title": "Toggle Split Editor in Group Layout", "description": "Toggle split editor layout in group", "category": "Editor Tabs" },
|
|
1006
|
+
{ "command": "workbench.action.focusFirstSideEditor", "title": "Focus First Side Editor", "description": "Focus first side editor", "category": "Editor Tabs" },
|
|
1007
|
+
{ "command": "workbench.action.focusSecondSideEditor", "title": "Focus Second Side Editor", "description": "Focus second side editor", "category": "Editor Tabs" },
|
|
1008
|
+
{ "command": "workbench.action.focusOtherSideEditor", "title": "Focus Other Side Editor", "description": "Focus other side editor", "category": "Editor Tabs" },
|
|
1009
|
+
{ "command": "workbench.action.focusSecondEditorGroup", "title": "Focus Second Editor Group", "description": "Focus second editor group", "category": "Editor Tabs" },
|
|
1010
|
+
{ "command": "workbench.action.focusThirdEditorGroup", "title": "Focus Third Editor Group", "description": "Focus third editor group", "category": "Editor Tabs" },
|
|
1011
|
+
{ "command": "workbench.action.focusFourthEditorGroup", "title": "Focus Fourth Editor Group", "description": "Focus fourth editor group", "category": "Editor Tabs" },
|
|
1012
|
+
{ "command": "workbench.action.focusFifthEditorGroup", "title": "Focus Fifth Editor Group", "description": "Focus fifth editor group", "category": "Editor Tabs" },
|
|
1013
|
+
{ "command": "workbench.action.focusSixthEditorGroup", "title": "Focus Sixth Editor Group", "description": "Focus sixth editor group", "category": "Editor Tabs" },
|
|
1014
|
+
{ "command": "workbench.action.focusSeventhEditorGroup", "title": "Focus Seventh Editor Group", "description": "Focus seventh editor group", "category": "Editor Tabs" },
|
|
1015
|
+
{ "command": "workbench.action.focusEighthEditorGroup", "title": "Focus Eighth Editor Group", "description": "Focus eighth editor group", "category": "Editor Tabs" },
|
|
1016
|
+
{ "command": "workbench.action.focusLeftGroupWithoutWrap", "title": "Focus Left Group Without Wrap", "description": "Focus left group without wrap", "category": "Editor Tabs" },
|
|
1017
|
+
{ "command": "workbench.action.focusRightGroupWithoutWrap", "title": "Focus Right Group Without Wrap", "description": "Focus right group without wrap", "category": "Editor Tabs" },
|
|
1018
|
+
{ "command": "workbench.action.focusAboveGroupWithoutWrap", "title": "Focus Above Group Without Wrap", "description": "Focus above group without wrap", "category": "Editor Tabs" },
|
|
1019
|
+
{ "command": "workbench.action.focusBelowGroupWithoutWrap", "title": "Focus Below Group Without Wrap", "description": "Focus below group without wrap", "category": "Editor Tabs" }
|
|
1020
|
+
];
|
|
1021
|
+
|
|
1022
|
+
// Breadcrumbs
|
|
1023
|
+
const breadcrumbCommands = [
|
|
1024
|
+
{ "command": "breadcrumbs.toggle", "title": "Toggle Breadcrumbs", "description": "Show/hide breadcrumbs", "category": "Breadcrumbs" },
|
|
1025
|
+
{ "command": "breadcrumbs.focusAndSelect", "title": "Focus and Select Breadcrumbs", "description": "Focus and select breadcrumbs", "category": "Breadcrumbs" },
|
|
1026
|
+
{ "command": "breadcrumbs.focus", "title": "Focus Breadcrumbs", "description": "Focus breadcrumbs", "category": "Breadcrumbs" },
|
|
1027
|
+
{ "command": "breadcrumbs.toggleToOn", "title": "Toggle Breadcrumbs On", "description": "Turn breadcrumbs on", "category": "Breadcrumbs" },
|
|
1028
|
+
{ "command": "breadcrumbs.focusNext", "title": "Breadcrumbs: Focus Next", "description": "Focus next breadcrumb", "category": "Breadcrumbs" },
|
|
1029
|
+
{ "command": "breadcrumbs.focusPrevious", "title": "Breadcrumbs: Focus Previous", "description": "Focus previous breadcrumb", "category": "Breadcrumbs" },
|
|
1030
|
+
{ "command": "breadcrumbs.focusNextWithPicker", "title": "Breadcrumbs: Focus Next with Picker", "description": "Focus next breadcrumb with picker", "category": "Breadcrumbs" },
|
|
1031
|
+
{ "command": "breadcrumbs.focusPreviousWithPicker", "title": "Breadcrumbs: Focus Previous with Picker", "description": "Focus previous breadcrumb with picker", "category": "Breadcrumbs" },
|
|
1032
|
+
{ "command": "breadcrumbs.selectFocused", "title": "Breadcrumbs: Select Focused", "description": "Select focused breadcrumb", "category": "Breadcrumbs" },
|
|
1033
|
+
{ "command": "breadcrumbs.revealFocused", "title": "Breadcrumbs: Reveal Focused", "description": "Reveal focused breadcrumb", "category": "Breadcrumbs" },
|
|
1034
|
+
{ "command": "breadcrumbs.selectEditor", "title": "Breadcrumbs: Select Editor", "description": "Select editor from breadcrumbs", "category": "Breadcrumbs" },
|
|
1035
|
+
{ "command": "breadcrumbs.revealFocusedFromTreeAside", "title": "Breadcrumbs: Reveal Focused from Tree Aside", "description": "Reveal focused from tree aside", "category": "Breadcrumbs" }
|
|
1036
|
+
];
|
|
1037
|
+
|
|
1038
|
+
// Auxiliary Window
|
|
1039
|
+
const auxiliaryWindowCommands = [
|
|
1040
|
+
{ "command": "workbench.action.toggleCompactAuxiliaryWindow", "title": "Toggle Compact Auxiliary Window", "description": "Toggle compact auxiliary window", "category": "Auxiliary Window" },
|
|
1041
|
+
{ "command": "workbench.action.enableCompactAuxiliaryWindow", "title": "Enable Compact Auxiliary Window", "description": "Enable compact auxiliary window", "category": "Auxiliary Window" },
|
|
1042
|
+
{ "command": "workbench.action.disableCompactAuxiliaryWindow", "title": "Disable Compact Auxiliary Window", "description": "Disable compact auxiliary window", "category": "Auxiliary Window" }
|
|
1043
|
+
];
|
|
1044
|
+
|
|
1045
|
+
// Sidebar Management
|
|
1046
|
+
const sidebarCommands = [
|
|
1047
|
+
{ "command": "workbench.action.closeSidebar", "title": "Close Sidebar", "description": "Close sidebar", "category": "Sidebar" },
|
|
1048
|
+
{ "command": "workbench.action.focusSideBar", "title": "Focus Sidebar", "description": "Focus sidebar", "category": "Sidebar" },
|
|
1049
|
+
{ "command": "workbench.action.activityBarLocation.default", "title": "Activity Bar Location: Default", "description": "Set default activity bar location", "category": "Sidebar" },
|
|
1050
|
+
{ "command": "workbench.action.activityBarLocation.top", "title": "Activity Bar Location: Top", "description": "Set activity bar to top", "category": "Sidebar" },
|
|
1051
|
+
{ "command": "workbench.action.activityBarLocation.bottom", "title": "Activity Bar Location: Bottom", "description": "Set activity bar to bottom", "category": "Sidebar" },
|
|
1052
|
+
{ "command": "workbench.action.activityBarLocation.hide", "title": "Activity Bar Location: Hide", "description": "Hide activity bar", "category": "Sidebar" },
|
|
1053
|
+
{ "command": "workbench.action.previousSideBarView", "title": "Previous Sidebar View", "description": "Switch to previous sidebar view", "category": "Sidebar" },
|
|
1054
|
+
{ "command": "workbench.action.nextSideBarView", "title": "Next Sidebar View", "description": "Switch to next sidebar view", "category": "Sidebar" },
|
|
1055
|
+
{ "command": "workbench.action.focusActivityBar", "title": "Focus Activity Bar", "description": "Focus activity bar", "category": "Sidebar" }
|
|
1056
|
+
];
|
|
1057
|
+
|
|
1058
|
+
// Banner/Status Bar
|
|
1059
|
+
const bannerStatusCommands = [
|
|
1060
|
+
{ "command": "workbench.banner.focusBanner", "title": "Focus Banner", "description": "Focus banner", "category": "Banner/Status Bar" },
|
|
1061
|
+
{ "command": "workbench.banner.focusNextAction", "title": "Banner: Focus Next Action", "description": "Focus next banner action", "category": "Banner/Status Bar" },
|
|
1062
|
+
{ "command": "workbench.banner.focusPreviousAction", "title": "Banner: Focus Previous Action", "description": "Focus previous banner action", "category": "Banner/Status Bar" },
|
|
1063
|
+
{ "command": "workbench.action.focusBanner", "title": "Focus Banner", "description": "Focus banner", "category": "Banner/Status Bar" },
|
|
1064
|
+
{ "command": "workbench.statusBar.focusPrevious", "title": "Status Bar: Focus Previous", "description": "Focus previous status bar item", "category": "Banner/Status Bar" },
|
|
1065
|
+
{ "command": "workbench.statusBar.focusNext", "title": "Status Bar: Focus Next", "description": "Focus next status bar item", "category": "Banner/Status Bar" },
|
|
1066
|
+
{ "command": "workbench.statusBar.focusFirst", "title": "Status Bar: Focus First", "description": "Focus first status bar item", "category": "Banner/Status Bar" },
|
|
1067
|
+
{ "command": "workbench.statusBar.focusLast", "title": "Status Bar: Focus Last", "description": "Focus last status bar item", "category": "Banner/Status Bar" },
|
|
1068
|
+
{ "command": "workbench.statusBar.clearFocus", "title": "Status Bar: Clear Focus", "description": "Clear focus from status bar", "category": "Banner/Status Bar" },
|
|
1069
|
+
{ "command": "workbench.action.focusStatusBar", "title": "Focus Status Bar", "description": "Focus status bar", "category": "Banner/Status Bar" }
|
|
1070
|
+
];
|
|
1071
|
+
|
|
1072
|
+
// Menu
|
|
1073
|
+
const menuCommands = [
|
|
1074
|
+
{ "command": "menu.resetHiddenStates", "title": "Reset Menu Hidden States", "description": "Reset hidden menu states", "category": "Menu" }
|
|
1075
|
+
];
|
|
1076
|
+
|
|
1077
|
+
// Search & Navigation
|
|
1078
|
+
const searchNavigationCommands = [
|
|
1079
|
+
{ "command": "workbench.action.gotoSymbol", "title": "Go to Symbol", "description": "Navigate to symbol in workspace", "category": "Search & Navigation" }
|
|
1080
|
+
];
|
|
1081
|
+
|
|
1082
|
+
// UI Toggles
|
|
1083
|
+
const uiToggleCommands = [
|
|
1084
|
+
{ "command": "toggle.window.commandCenter", "title": "Toggle Command Center", "description": "Toggle command center visibility", "category": "UI Toggles" },
|
|
1085
|
+
{ "command": "toggle.workbench.navigationControl.enabled", "title": "Toggle Navigation Control", "description": "Toggle navigation control", "category": "UI Toggles" },
|
|
1086
|
+
{ "command": "toggle.workbench.layoutControl.enabled", "title": "Toggle Layout Control", "description": "Toggle layout control", "category": "UI Toggles" },
|
|
1087
|
+
{ "command": "toggle.window.customTitleBarVisibility", "title": "Toggle Custom Title Bar", "description": "Toggle custom title bar visibility", "category": "UI Toggles" },
|
|
1088
|
+
{ "command": "toggle.window.customTitleBarVisibility.windowed", "title": "Toggle Custom Title Bar (Windowed)", "description": "Toggle custom title bar in windowed mode", "category": "UI Toggles" },
|
|
1089
|
+
{ "command": "toggle.toggleCustomTitleBar", "title": "Toggle Custom Title Bar", "description": "Toggle custom title bar", "category": "UI Toggles" },
|
|
1090
|
+
{ "command": "showCustomTitleBar", "title": "Show Custom Title Bar", "description": "Show custom title bar", "category": "UI Toggles" },
|
|
1091
|
+
{ "command": "hideCustomTitleBar", "title": "Hide Custom Title Bar", "description": "Hide custom title bar", "category": "UI Toggles" },
|
|
1092
|
+
{ "command": "hideCustomTitleBarInFullScreen", "title": "Hide Custom Title Bar in Full Screen", "description": "Hide custom title bar in full screen", "category": "UI Toggles" },
|
|
1093
|
+
{ "command": "toggle.workbench.editor.editorActionsLocation", "title": "Toggle Editor Actions Location", "description": "Toggle editor actions location", "category": "UI Toggles" },
|
|
1094
|
+
{ "command": "toggle.chat.commandCenter.enabled", "title": "Toggle Chat Command Center", "description": "Toggle chat command center", "category": "UI Toggles" }
|
|
1095
|
+
];
|
|
1096
|
+
|
|
1097
|
+
// Extension & Other Commands (Not pure VSCode editor commands)
|
|
1098
|
+
const extensionCommands = [
|
|
1099
|
+
{ "command": "workbench.extensions.action.manageAuthorizedExtensionURIs", "title": "Manage Authorized Extension URIs", "description": "Manage authorized URIs for extensions", "category": "Extensions" },
|
|
1100
|
+
{ "command": "workbench.scm.action.setListViewMode", "title": "Set List View Mode", "description": "Switch to list view mode in SCM", "category": "Extension Commands" },
|
|
1101
|
+
{ "command": "workbench.scm.action.setTreeViewMode", "title": "Set Tree View Mode", "description": "Switch to tree view mode in SCM", "category": "Extension Commands" },
|
|
1102
|
+
{ "command": "workbench.scm.action.setListViewModeNavigation", "title": "Set List View Mode Navigation", "description": "Configure list view navigation in SCM", "category": "Extension Commands" },
|
|
1103
|
+
{ "command": "workbench.scm.action.setTreeViewModeNavigation", "title": "Set Tree View Mode Navigation", "description": "Configure tree view navigation in SCM", "category": "Extension Commands" },
|
|
1104
|
+
{ "command": "workbench.scm.action.repositories.setSortKey.discoveryTime", "title": "Sort Repositories by Discovery Time", "description": "Arrange repositories by discovery time", "category": "Extension Commands" },
|
|
1105
|
+
{ "command": "workbench.scm.action.repositories.setSortKey.name", "title": "Sort Repositories by Name", "description": "Arrange repositories alphabetically by name", "category": "Extension Commands" },
|
|
1106
|
+
{ "command": "workbench.scm.action.repositories.setSortKey.path", "title": "Sort Repositories by Path", "description": "Arrange repositories by file path", "category": "Extension Commands" },
|
|
1107
|
+
{ "command": "workbench.scm.action.repositories.setSelectionMode.single", "title": "Set Single Repository Selection", "description": "Allow selecting only one repository at a time", "category": "Extension Commands" },
|
|
1108
|
+
{ "command": "workbench.scm.action.repositories.setSelectionMode.multiple", "title": "Set Multiple Repository Selection", "description": "Allow selecting multiple repositories", "category": "Extension Commands" },
|
|
1109
|
+
{ "command": "workbench.scm.action.setSortKey.name", "title": "Sort by Name", "description": "Sort SCM items by name", "category": "Extension Commands" },
|
|
1110
|
+
{ "command": "workbench.scm.action.setSortKey.path", "title": "Sort by Path", "description": "Sort SCM items by path", "category": "Extension Commands" },
|
|
1111
|
+
{ "command": "workbench.scm.action.setSortKey.status", "title": "Sort by Status", "description": "Sort SCM items by status", "category": "Extension Commands" },
|
|
1112
|
+
{ "command": "workbench.scm.action.collapseAllRepositories", "title": "Collapse All Repositories", "description": "Collapse all repository views", "category": "Extension Commands" },
|
|
1113
|
+
{ "command": "workbench.scm.action.expandAllRepositories", "title": "Expand All Repositories", "description": "Expand all repository views", "category": "Extension Commands" },
|
|
1114
|
+
{ "command": "scm.input.triggerSetup", "title": "Trigger SCM Input Setup", "description": "Initialize SCM input configuration", "category": "Extension Commands" },
|
|
1115
|
+
{ "command": "workbench.scm.action.graph.pickRepository", "title": "Pick Repository for Graph", "description": "Select repository for graph view", "category": "Extension Commands" },
|
|
1116
|
+
{ "command": "workbench.scm.action.graph.pickHistoryItemRefs", "title": "Pick History References", "description": "Select history items for reference", "category": "Extension Commands" },
|
|
1117
|
+
{ "command": "workbench.scm.action.graph.revealCurrentHistoryItem", "title": "Reveal Current History Item", "description": "Show current item in history", "category": "Extension Commands" },
|
|
1118
|
+
{ "command": "workbench.scm.action.graph.refresh", "title": "Refresh Graph", "description": "Refresh the SCM graph view", "category": "Extension Commands" },
|
|
1119
|
+
{ "command": "workbench.scm.action.graph.setListViewMode", "title": "Set Graph List View", "description": "Switch graph to list view", "category": "Extension Commands" },
|
|
1120
|
+
{ "command": "workbench.scm.action.graph.setTreeViewMode", "title": "Set Graph Tree View", "description": "Switch graph to tree view", "category": "Extension Commands" },
|
|
1121
|
+
{ "command": "workbench.scm.action.graph.viewChanges", "title": "View Graph Changes", "description": "Display changes in graph view", "category": "Extension Commands" },
|
|
1122
|
+
{ "command": "workbench.scm.action.graph.openFile", "title": "Open File from Graph", "description": "Open file from SCM graph", "category": "Extension Commands" },
|
|
1123
|
+
{ "command": "scm.acceptInput", "title": "Accept SCM Input", "description": "Accept and process SCM input", "category": "Extension Commands" },
|
|
1124
|
+
{ "command": "scm.clearInput", "title": "Clear SCM Input", "description": "Clear SCM input field", "category": "Extension Commands" },
|
|
1125
|
+
{ "command": "scm.viewNextCommit", "title": "View Next Commit", "description": "Navigate to next commit", "category": "Extension Commands" },
|
|
1126
|
+
{ "command": "scm.viewPreviousCommit", "title": "View Previous Commit", "description": "Navigate to previous commit", "category": "Extension Commands" },
|
|
1127
|
+
{ "command": "scm.forceViewNextCommit", "title": "Force View Next Commit", "description": "Force navigation to next commit", "category": "Extension Commands" },
|
|
1128
|
+
{ "command": "scm.forceViewPreviousCommit", "title": "Force View Previous Commit", "description": "Force navigation to previous commit", "category": "Extension Commands" },
|
|
1129
|
+
{ "command": "scm.openInIntegratedTerminal", "title": "Open in Integrated Terminal", "description": "Open SCM item in integrated terminal", "category": "Extension Commands" },
|
|
1130
|
+
{ "command": "scm.openInTerminal", "title": "Open in Terminal", "description": "Open SCM item in terminal", "category": "Extension Commands" },
|
|
1131
|
+
{ "command": "scm.setActiveProvider", "title": "Set Active SCM Provider", "description": "Change active SCM provider", "category": "Extension Commands" },
|
|
1132
|
+
{ "command": "workbench.scm.action.focusPreviousInput", "title": "Focus Previous Input", "description": "Move focus to previous input field", "category": "Extension Commands" },
|
|
1133
|
+
{ "command": "workbench.scm.action.focusNextInput", "title": "Focus Next Input", "description": "Move focus to next input field", "category": "Extension Commands" },
|
|
1134
|
+
{ "command": "workbench.scm.action.focusPreviousResourceGroup", "title": "Focus Previous Resource Group", "description": "Move focus to previous resource group", "category": "Extension Commands" },
|
|
1135
|
+
{ "command": "workbench.scm.action.focusNextResourceGroup", "title": "Focus Next Resource Group", "description": "Move focus to next resource group", "category": "Extension Commands" },
|
|
1136
|
+
{ "command": "scm.editor.triggerSetup", "title": "Trigger SCM Editor Setup", "description": "Initialize SCM editor configuration", "category": "Extension Commands" }
|
|
1137
|
+
];
|
|
1138
|
+
// Debug/Diagnostics
|
|
1139
|
+
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
|
|
1143
|
+
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
|
|
1148
|
+
|
|
1149
|
+
// Workbench Actions & Settings
|
|
1150
|
+
const workbenchCommands = [
|
|
1151
|
+
{ "command": "workbench.action.inspectKeyMappings", "title": "Inspect Key Mappings", "description": "Inspect key mappings", "category": "Workbench Actions" },
|
|
1152
|
+
{ "command": "workbench.action.inspectKeyMappingsJSON", "title": "Inspect Key Mappings JSON", "description": "Inspect key mappings in JSON format", "category": "Workbench Actions" },
|
|
1153
|
+
{ "command": "workbench.action.gotoLine", "title": "Go to Line", "description": "Navigate to specific line", "category": "Workbench Actions" },
|
|
1154
|
+
{ "command": "workbench.action.gotoOffset", "title": "Go to Offset", "description": "Navigate to specific offset", "category": "Workbench Actions" },
|
|
1155
|
+
{ "command": "workbench.action.toggleMultiCursorModifier", "title": "Toggle Multi-Cursor Modifier", "description": "Toggle multi-cursor modifier key", "category": "Workbench Actions" },
|
|
1156
|
+
{ "command": "workbench.action.toggleKeybindingsLog", "title": "Toggle Keybindings Log", "description": "Toggle keybindings logging", "category": "Workbench Actions" },
|
|
1157
|
+
{ "command": "workbench.action.populateFileFromSnippet", "title": "Populate File from Snippet", "description": "Populate file from code snippet", "category": "Workbench Actions" },
|
|
1158
|
+
{ "command": "workbench.action.openSnippets", "title": "Open Snippets", "description": "Open code snippets", "category": "Workbench Actions" },
|
|
1159
|
+
{ "command": "editor.action.formatDocument.none", "title": "Format Document None", "description": "Format document with no formatter", "category": "Workbench Actions" },
|
|
1160
|
+
{ "command": "workbench.action.selectTheme", "title": "Select Theme", "description": "Select color theme", "category": "Workbench Actions" },
|
|
1161
|
+
{ "command": "workbench.action.selectIconTheme", "title": "Select Icon Theme", "description": "Select icon theme", "category": "Workbench Actions" },
|
|
1162
|
+
{ "command": "workbench.action.selectProductIconTheme", "title": "Select Product Icon Theme", "description": "Select product icon theme", "category": "Workbench Actions" },
|
|
1163
|
+
{ "command": "workbench.action.previewColorTheme", "title": "Preview Color Theme", "description": "Preview color theme", "category": "Workbench Actions" },
|
|
1164
|
+
{ "command": "workbench.action.generateColorTheme", "title": "Generate Color Theme", "description": "Generate color theme", "category": "Workbench Actions" },
|
|
1165
|
+
{ "command": "workbench.action.toggleLightDarkThemes", "title": "Toggle Light/Dark Themes", "description": "Toggle between light and dark themes", "category": "Workbench Actions" },
|
|
1166
|
+
{ "command": "workbench.action.browseColorThemesInMarketplace", "title": "Browse Themes in Marketplace", "description": "Browse color themes in marketplace", "category": "Workbench Actions" },
|
|
1167
|
+
{ "command": "update.showCurrentReleaseNotes", "title": "Show Current Release Notes", "description": "Show current release notes", "category": "Workbench Actions" },
|
|
1168
|
+
{ "command": "developer.showCurrentFileAsReleaseNotes", "title": "Show File as Release Notes", "description": "Show current file as release notes", "category": "Workbench Actions" },
|
|
1169
|
+
{ "command": "workbench.action.download", "title": "Download", "description": "Download file", "category": "Workbench Actions" },
|
|
1170
|
+
{ "command": "update.checkForUpdate", "title": "Check for Update", "description": "Check for updates", "category": "Workbench Actions" },
|
|
1171
|
+
{ "command": "update.downloadUpdate", "title": "Download Update", "description": "Download update", "category": "Workbench Actions" },
|
|
1172
|
+
{ "command": "update.installUpdate", "title": "Install Update", "description": "Install update", "category": "Workbench Actions" },
|
|
1173
|
+
{ "command": "update.restartToUpdate", "title": "Restart to Update", "description": "Restart to apply update", "category": "Workbench Actions" },
|
|
1174
|
+
{ "command": "workbench.action.openWalkthrough", "title": "Open Walkthrough", "description": "Open walkthrough", "category": "Workbench Actions" },
|
|
1175
|
+
{ "command": "welcome.goBack", "title": "Welcome Go Back", "description": "Go back in welcome screen", "category": "Workbench Actions" },
|
|
1176
|
+
{ "command": "walkthroughs.selectStep", "title": "Select Walkthrough Step", "description": "Select walkthrough step", "category": "Workbench Actions" },
|
|
1177
|
+
{ "command": "welcome.markStepComplete", "title": "Mark Step Complete", "description": "Mark walkthrough step as complete", "category": "Workbench Actions" },
|
|
1178
|
+
{ "command": "welcome.markStepIncomplete", "title": "Mark Step Incomplete", "description": "Mark walkthrough step as incomplete", "category": "Workbench Actions" },
|
|
1179
|
+
{ "command": "welcome.showAllWalkthroughs", "title": "Show All Walkthroughs", "description": "Show all walkthroughs", "category": "Workbench Actions" },
|
|
1180
|
+
{ "command": "welcome.newWorkspaceChat", "title": "New Workspace Chat", "description": "Start new workspace chat", "category": "Workbench Actions" },
|
|
1181
|
+
{ "command": "workbench.action.showInteractivePlayground", "title": "Show Interactive Playground", "description": "Show interactive playground", "category": "Workbench Actions" },
|
|
1182
|
+
{ "command": "workbench.action.interactivePlayground.arrowUp", "title": "Interactive Playground Arrow Up", "description": "Navigate up in interactive playground", "category": "Workbench Actions" },
|
|
1183
|
+
{ "command": "workbench.action.interactivePlayground.arrowDown", "title": "Interactive Playground Arrow Down", "description": "Navigate down in interactive playground", "category": "Workbench Actions" },
|
|
1184
|
+
{ "command": "workbench.action.interactivePlayground.pageUp", "title": "Interactive Playground Page Up", "description": "Page up in interactive playground", "category": "Workbench Actions" },
|
|
1185
|
+
{ "command": "workbench.action.interactivePlayground.pageDown", "title": "Interactive Playground Page Down", "description": "Page down in interactive playground", "category": "Workbench Actions" },
|
|
1186
|
+
{ "command": "welcome.showNewFileEntries", "title": "Show New File Entries", "description": "Show new file entries", "category": "Workbench Actions" },
|
|
1187
|
+
{ "command": "workbench.getCodeExchangeProxyEndpoints", "title": "Get Code Exchange Proxy Endpoints", "description": "Get code exchange proxy endpoints", "category": "Workbench Actions" },
|
|
1188
|
+
{ "command": "workbench.profiles.actions.createTemporaryProfile", "title": "Create Temporary Profile", "description": "Create temporary profile", "category": "Workbench Actions" },
|
|
1189
|
+
{ "command": "workbench.profiles.actions.cleanupProfiles", "title": "Cleanup Profiles", "description": "Cleanup profiles", "category": "Workbench Actions" },
|
|
1190
|
+
{ "command": "workbench.profiles.actions.resetWorkspaces", "title": "Reset Workspaces", "description": "Reset workspaces", "category": "Workbench Actions" },
|
|
1191
|
+
{ "command": "workbench.action.continueOn.extensions", "title": "Continue on Extensions", "description": "Continue on extensions", "category": "Workbench Actions" },
|
|
1192
|
+
{ "command": "files.openTimeline", "title": "Open Timeline", "description": "Open file timeline", "category": "Workbench Actions" },
|
|
1193
|
+
{ "command": "workbench.action.localHistory.compareWithFile", "title": "Compare with File", "description": "Compare with file in local history", "category": "Workbench Actions" },
|
|
1194
|
+
{ "command": "workbench.action.localHistory.compareWithPrevious", "title": "Compare with Previous", "description": "Compare with previous version", "category": "Workbench Actions" },
|
|
1195
|
+
{ "command": "workbench.action.localHistory.selectForCompare", "title": "Select for Compare", "description": "Select file for comparison", "category": "Workbench Actions" },
|
|
1196
|
+
{ "command": "workbench.action.localHistory.compareWithSelected", "title": "Compare with Selected", "description": "Compare with selected version", "category": "Workbench Actions" },
|
|
1197
|
+
{ "command": "workbench.action.localHistory.open", "title": "Open Local History", "description": "Open local history", "category": "Workbench Actions" },
|
|
1198
|
+
{ "command": "workbench.action.localHistory.restoreViaEditor", "title": "Restore via Editor", "description": "Restore via editor", "category": "Workbench Actions" },
|
|
1199
|
+
{ "command": "workbench.action.localHistory.restore", "title": "Restore", "description": "Restore from local history", "category": "Workbench Actions" },
|
|
1200
|
+
{ "command": "workbench.action.localHistory.restoreViaPicker", "title": "Restore via Picker", "description": "Restore via picker", "category": "Workbench Actions" },
|
|
1201
|
+
{ "command": "workbench.action.localHistory.rename", "title": "Rename Local History", "description": "Rename local history entry", "category": "Workbench Actions" },
|
|
1202
|
+
{ "command": "workbench.action.localHistory.delete", "title": "Delete Local History", "description": "Delete local history entry", "category": "Workbench Actions" },
|
|
1203
|
+
{ "command": "workbench.action.localHistory.deleteAll", "title": "Delete All Local History", "description": "Delete all local history", "category": "Workbench Actions" },
|
|
1204
|
+
{ "command": "workbench.action.localHistory.create", "title": "Create Local History", "description": "Create local history entry", "category": "Workbench Actions" },
|
|
1205
|
+
{ "command": "workbench.trust.configure", "title": "Configure Trust", "description": "Configure workspace trust", "category": "Workbench Actions" },
|
|
1206
|
+
{ "command": "workbench.trust.manage", "title": "Manage Trust", "description": "Manage workspace trust", "category": "Workbench Actions" },
|
|
1207
|
+
{ "command": "workbench.action.openWorkspaceFromEditor", "title": "Open Workspace from Editor", "description": "Open workspace from editor", "category": "Workbench Actions" },
|
|
1208
|
+
{ "command": "list.resizeColumn", "title": "Resize Column", "description": "Resize list column", "category": "Workbench Actions" },
|
|
1209
|
+
{ "command": "signals.sounds.help", "title": "Sounds Help", "description": "Help for sound signals", "category": "Workbench Actions" },
|
|
1210
|
+
{ "command": "accessibility.announcement.help", "title": "Accessibility Announcement Help", "description": "Help for accessibility announcements", "category": "Workbench Actions" },
|
|
1211
|
+
{ "command": "toggle.workbench.experimental.share.enabled", "title": "Toggle Experimental Share", "description": "Toggle experimental sharing feature", "category": "Workbench Actions" },
|
|
1212
|
+
{ "command": "workbench.action.zoomIn", "title": "Zoom In", "description": "Zoom in", "category": "Workbench Actions" },
|
|
1213
|
+
{ "command": "workbench.action.zoomOut", "title": "Zoom Out", "description": "Zoom out", "category": "Workbench Actions" },
|
|
1214
|
+
{ "command": "workbench.action.zoomReset", "title": "Zoom Reset", "description": "Reset zoom level", "category": "Workbench Actions" },
|
|
1215
|
+
{ "command": "workbench.action.switchWindow", "title": "Switch Window", "description": "Switch between windows", "category": "Workbench Actions" },
|
|
1216
|
+
{ "command": "workbench.action.quickSwitchWindow", "title": "Quick Switch Window", "description": "Quickly switch between windows", "category": "Workbench Actions" },
|
|
1217
|
+
{ "command": "workbench.action.closeWindow", "title": "Close Window", "description": "Close current window", "category": "Workbench Actions" },
|
|
1218
|
+
{ "command": "workbench.action.closeOtherWindows", "title": "Close Other Windows", "description": "Close other windows", "category": "Workbench Actions" },
|
|
1219
|
+
{ "command": "workbench.action.toggleWindowAlwaysOnTop", "title": "Toggle Window Always on Top", "description": "Toggle window always on top", "category": "Workbench Actions" },
|
|
1220
|
+
{ "command": "workbench.action.enableWindowAlwaysOnTop", "title": "Enable Window Always on Top", "description": "Enable window always on top", "category": "Workbench Actions" },
|
|
1221
|
+
{ "command": "workbench.action.disableWindowAlwaysOnTop", "title": "Disable Window Always on Top", "description": "Disable window always on top", "category": "Workbench Actions" },
|
|
1222
|
+
{ "command": "workbench.action.quit", "title": "Quit", "description": "Quit application", "category": "Workbench Actions" },
|
|
1223
|
+
{ "command": "workbench.action.reloadWindowWithExtensionsDisabled", "title": "Reload Window with Extensions Disabled", "description": "Reload window with extensions disabled", "category": "Workbench Actions" },
|
|
1224
|
+
{ "command": "workbench.action.configureRuntimeArguments", "title": "Configure Runtime Arguments", "description": "Configure runtime arguments", "category": "Workbench Actions" },
|
|
1225
|
+
{ "command": "workbench.action.toggleDevTools", "title": "Toggle DevTools", "description": "Toggle developer tools", "category": "Workbench Actions" },
|
|
1226
|
+
{ "command": "workbench.action.revealUserDataFolder", "title": "Reveal User Data Folder", "description": "Reveal user data folder", "category": "Workbench Actions" },
|
|
1227
|
+
{ "command": "workbench.action.showGPUInfo", "title": "Show GPU Info", "description": "Show GPU information", "category": "Workbench Actions" },
|
|
1228
|
+
{ "command": "workbench.action.showContentTracing", "title": "Show Content Tracing", "description": "Show content tracing", "category": "Workbench Actions" },
|
|
1229
|
+
{ "command": "workbench.action.stopTracing", "title": "Stop Tracing", "description": "Stop content tracing", "category": "Workbench Actions" },
|
|
1230
|
+
{ "command": "editor.action.measureExtHostLatency", "title": "Measure Extension Host Latency", "description": "Measure extension host latency", "category": "Workbench Actions" },
|
|
1231
|
+
{ "command": "workbench.action.restartExtensionHost", "title": "Restart Extension Host", "description": "Restart extension host", "category": "Workbench Actions" },
|
|
1232
|
+
{ "command": "workbench.action.openLogsFolder", "title": "Open Logs Folder", "description": "Open logs folder", "category": "Workbench Actions" },
|
|
1233
|
+
{ "command": "workbench.action.openExtensionLogsFolder", "title": "Open Extension Logs Folder", "description": "Open extension logs folder", "category": "Workbench Actions" },
|
|
1234
|
+
{ "command": "revealFileInOS", "title": "Reveal File in OS", "description": "Reveal file in operating system", "category": "Workbench Actions" },
|
|
1235
|
+
{ "command": "workbench.action.files.revealActiveFileInWindows", "title": "Reveal Active File in Windows", "description": "Reveal active file in Windows", "category": "Workbench Actions" },
|
|
1236
|
+
{ "command": "editor.action.startDebugTextMate", "title": "Start Debug TextMate", "description": "Start TextMate debugging", "category": "Workbench Actions" },
|
|
1237
|
+
{ "command": "workbench.extensions.action.debugExtensionHost", "title": "Debug Extension Host", "description": "Debug extension host", "category": "Workbench Actions" },
|
|
1238
|
+
{ "command": "workbench.extensions.action.extensionHostProfile", "title": "Extension Host Profile", "description": "Profile extension host", "category": "Workbench Actions" },
|
|
1239
|
+
{ "command": "workbench.extensions.action.stopExtensionHostProfile", "title": "Stop Extension Host Profile", "description": "Stop extension host profiling", "category": "Workbench Actions" },
|
|
1240
|
+
{ "command": "workbench.extensions.action.saveExtensionHostProfile", "title": "Save Extension Host Profile", "description": "Save extension host profile", "category": "Workbench Actions" },
|
|
1241
|
+
{ "command": "workbench.extensions.action.openExtensionHostProfile", "title": "Open Extension Host Profile", "description": "Open extension host profile", "category": "Workbench Actions" },
|
|
1242
|
+
{ "command": "workbench.extensions.action.devtoolsExtensionHost", "title": "DevTools Extension Host", "description": "Open extension host DevTools", "category": "Workbench Actions" },
|
|
1243
|
+
{ "command": "workbench.action.troubleshootIssue.start", "title": "Start Troubleshoot Issue", "description": "Start troubleshooting issue", "category": "Workbench Actions" },
|
|
1244
|
+
{ "command": "workbench.action.troubleshootIssue.stop", "title": "Stop Troubleshoot Issue", "description": "Stop troubleshooting issue", "category": "Workbench Actions" },
|
|
1245
|
+
{ "command": "workbench.action.files.openLocalFile", "title": "Open Local File", "description": "Open local file", "category": "Workbench Actions" },
|
|
1246
|
+
{ "command": "workbench.action.files.openLocalFolder", "title": "Open Local Folder", "description": "Open local folder", "category": "Workbench Actions" },
|
|
1247
|
+
{ "command": "workbench.action.files.saveLocalFile", "title": "Save Local File", "description": "Save local file", "category": "Workbench Actions" },
|
|
1248
|
+
{ "command": "workbench.remote.action.closeUnusedPorts", "title": "Close Unused Ports", "description": "Close unused remote ports", "category": "Workbench Actions" },
|
|
1249
|
+
{ "command": "workbench.userData.actions.openSyncBackupsFolder", "title": "Open Sync Backups Folder", "description": "Open sync backups folder", "category": "Workbench Actions" },
|
|
1250
|
+
{ "command": "workbench.userDataSync.actions.downloadSyncActivity", "title": "Download Sync Activity", "description": "Download sync activity data", "category": "Workbench Actions" },
|
|
1251
|
+
{ "command": "workbench.action.terminal.openNativeConsole", "title": "Open Native Console", "description": "Open native console", "category": "Workbench Actions" },
|
|
1252
|
+
{ "command": "workbench.action.webview.openDeveloperTools", "title": "WebView Open Developer Tools", "description": "Open WebView developer tools", "category": "Workbench Actions" },
|
|
1253
|
+
{ "command": "workbench.action.localHistory.revealInOS", "title": "Reveal Local History in OS", "description": "Reveal local history in operating system", "category": "Workbench Actions" }
|
|
1254
|
+
];
|
|
1255
|
+
|
|
1256
|
+
// Voice/Speech Features
|
|
1257
|
+
const voiceCommands = [
|
|
1258
|
+
{ "command": "workbench.action.chat.startVoiceChat", "title": "Start Voice Chat", "description": "Start voice chat", "category": "Voice/Speech Features" },
|
|
1259
|
+
{ "command": "workbench.action.chat.voiceChatInChatView", "title": "Voice Chat in Chat View", "description": "Start voice chat in chat view", "category": "Voice/Speech Features" },
|
|
1260
|
+
{ "command": "workbench.action.chat.holdToVoiceChatInChatView", "title": "Hold to Voice Chat in Chat View", "description": "Hold to start voice chat in chat view", "category": "Voice/Speech Features" },
|
|
1261
|
+
{ "command": "workbench.action.chat.quickVoiceChat", "title": "Quick Voice Chat", "description": "Start quick voice chat", "category": "Voice/Speech Features" },
|
|
1262
|
+
{ "command": "workbench.action.chat.inlineVoiceChat", "title": "Inline Voice Chat", "description": "Start inline voice chat", "category": "Voice/Speech Features" },
|
|
1263
|
+
{ "command": "workbench.action.chat.stopListening", "title": "Stop Listening", "description": "Stop voice listening", "category": "Voice/Speech Features" },
|
|
1264
|
+
{ "command": "workbench.action.chat.stopListeningAndSubmit", "title": "Stop Listening and Submit", "description": "Stop listening and submit", "category": "Voice/Speech Features" },
|
|
1265
|
+
{ "command": "workbench.action.chat.readChatResponseAloud", "title": "Read Chat Response Aloud", "description": "Read chat response aloud", "category": "Voice/Speech Features" },
|
|
1266
|
+
{ "command": "workbench.action.chat.stopReadChatItemAloud", "title": "Stop Read Chat Item Aloud", "description": "Stop reading chat item aloud", "category": "Voice/Speech Features" },
|
|
1267
|
+
{ "command": "workbench.action.speech.stopReadAloud", "title": "Stop Read Aloud", "description": "Stop reading aloud", "category": "Voice/Speech Features" },
|
|
1268
|
+
{ "command": "workbench.action.chat.openStorageFolder", "title": "Open Chat Storage Folder", "description": "Open chat storage folder", "category": "Voice/Speech Features" },
|
|
1269
|
+
{ "command": "inlineChat.holdForSpeech", "title": "Hold for Speech", "description": "Hold for speech input in inline chat", "category": "Voice/Speech Features" }
|
|
1270
|
+
];
|
|
1271
|
+
|
|
1272
|
+
|
|
1273
|
+
// View Opening/Focus Commands
|
|
1274
|
+
const viewOpeningCommands = [
|
|
1275
|
+
{ "command": "workbench.view.agentSessions", "title": "Open Agent Sessions View", "description": "Open agent sessions view", "category": "View Opening/Focus Commands" },
|
|
1276
|
+
{ "command": "workbench.view.agentSessions.focus", "title": "Focus Agent Sessions View", "description": "Focus agent sessions view", "category": "View Opening/Focus Commands" },
|
|
1277
|
+
{ "command": "workbench.view.agentSessions.resetViewLocation", "title": "Reset Agent Sessions View Location", "description": "Reset agent sessions view location", "category": "View Opening/Focus Commands" },
|
|
1278
|
+
{ "command": "workbench.viewContainer.agentSessions", "title": "Agent Sessions View Container", "description": "Open agent sessions view container", "category": "View Opening/Focus Commands" },
|
|
1279
|
+
{ "command": "workbench.panel.chat", "title": "Open Chat Panel", "description": "Open chat panel", "category": "View Opening/Focus Commands" },
|
|
1280
|
+
{ "command": "workbench.panel.chat.view.copilot.focus", "title": "Focus Copilot Chat View", "description": "Focus Copilot chat view", "category": "View Opening/Focus Commands" },
|
|
1281
|
+
{ "command": "workbench.panel.chat.view.copilot.resetViewLocation", "title": "Reset Copilot Chat View Location", "description": "Reset Copilot chat view location", "category": "View Opening/Focus Commands" },
|
|
1282
|
+
{ "command": "workbench.view.extensions", "title": "Open Extensions View", "description": "Open extensions view", "category": "View Opening/Focus Commands" },
|
|
1283
|
+
{ "command": "workbench.view.testing.open", "title": "Open Testing View", "description": "Open testing view", "category": "View Opening/Focus Commands" },
|
|
1284
|
+
{ "command": "workbench.view.testing.focus", "title": "Focus Testing View", "description": "Focus testing view", "category": "View Opening/Focus Commands" },
|
|
1285
|
+
{ "command": "workbench.view.testing.resetViewLocation", "title": "Reset Testing View Location", "description": "Reset testing view location", "category": "View Opening/Focus Commands" },
|
|
1286
|
+
{ "command": "workbench.view.testCoverage.open", "title": "Open Test Coverage View", "description": "Open test coverage view", "category": "View Opening/Focus Commands" },
|
|
1287
|
+
{ "command": "workbench.view.testCoverage.focus", "title": "Focus Test Coverage View", "description": "Focus test coverage view", "category": "View Opening/Focus Commands" },
|
|
1288
|
+
{ "command": "workbench.view.testCoverage.resetViewLocation", "title": "Reset Test Coverage View Location", "description": "Reset test coverage view location", "category": "View Opening/Focus Commands" },
|
|
1289
|
+
{ "command": "workbench.view.extension.test", "title": "Open Extension Test View", "description": "Open extension test view", "category": "View Opening/Focus Commands" },
|
|
1290
|
+
{ "command": "outline.open", "title": "Open Outline View", "description": "Open outline view", "category": "View Opening/Focus Commands" },
|
|
1291
|
+
{ "command": "outline.focus", "title": "Focus Outline View", "description": "Focus outline view", "category": "View Opening/Focus Commands" },
|
|
1292
|
+
{ "command": "outline.resetViewLocation", "title": "Reset Outline View Location", "description": "Reset outline view location", "category": "View Opening/Focus Commands" },
|
|
1293
|
+
{ "command": "timeline.open", "title": "Open Timeline View", "description": "Open timeline view", "category": "View Opening/Focus Commands" },
|
|
1294
|
+
{ "command": "timeline.focus", "title": "Focus Timeline View", "description": "Focus timeline view", "category": "View Opening/Focus Commands" },
|
|
1295
|
+
{ "command": "timeline.resetViewLocation", "title": "Reset Timeline View Location", "description": "Reset timeline view location", "category": "View Opening/Focus Commands" },
|
|
1296
|
+
{ "command": "workbench.action.terminal.toggleTerminal", "title": "Toggle Terminal", "description": "Toggle terminal visibility", "category": "View Opening/Focus Commands" },
|
|
1297
|
+
{ "command": "terminal.focus", "title": "Focus Terminal", "description": "Focus terminal", "category": "View Opening/Focus Commands" },
|
|
1298
|
+
{ "command": "terminal.resetViewLocation", "title": "Reset Terminal View Location", "description": "Reset terminal view location", "category": "View Opening/Focus Commands" },
|
|
1299
|
+
{ "command": "workbench.view.explorer", "title": "Open Explorer View", "description": "Open explorer view", "category": "View Opening/Focus Commands" },
|
|
1300
|
+
{ "command": "workbench.scm.history.open", "title": "Open SCM History View", "description": "Open SCM history view", "category": "View Opening/Focus Commands" },
|
|
1301
|
+
{ "command": "workbench.scm.history.focus", "title": "Focus SCM History View", "description": "Focus SCM history view", "category": "View Opening/Focus Commands" },
|
|
1302
|
+
{ "command": "workbench.scm.history.resetViewLocation", "title": "Reset SCM History View Location", "description": "Reset SCM history view location", "category": "View Opening/Focus Commands" },
|
|
1303
|
+
{ "command": "workbench.debug.welcome.open", "title": "Open Debug Welcome View", "description": "Open debug welcome view", "category": "View Opening/Focus Commands" },
|
|
1304
|
+
{ "command": "workbench.debug.welcome.focus", "title": "Focus Debug Welcome View", "description": "Focus debug welcome view", "category": "View Opening/Focus Commands" },
|
|
1305
|
+
{ "command": "workbench.debug.welcome.resetViewLocation", "title": "Reset Debug Welcome View Location", "description": "Reset debug welcome view location", "category": "View Opening/Focus Commands" },
|
|
1306
|
+
{ "command": "workbench.debug.variablesView.open", "title": "Open Variables View", "description": "Open debug variables view", "category": "View Opening/Focus Commands" },
|
|
1307
|
+
{ "command": "workbench.debug.action.focusVariablesView", "title": "Focus Variables View", "description": "Focus debug variables view", "category": "View Opening/Focus Commands" },
|
|
1308
|
+
{ "command": "workbench.debug.variablesView.resetViewLocation", "title": "Reset Variables View Location", "description": "Reset debug variables view location", "category": "View Opening/Focus Commands" },
|
|
1309
|
+
{ "command": "workbench.debug.watchExpressionsView.open", "title": "Open Watch Expressions View", "description": "Open watch expressions view", "category": "View Opening/Focus Commands" },
|
|
1310
|
+
{ "command": "workbench.debug.action.focusWatchView", "title": "Focus Watch View", "description": "Focus watch expressions view", "category": "View Opening/Focus Commands" },
|
|
1311
|
+
{ "command": "workbench.debug.watchExpressionsView.resetViewLocation", "title": "Reset Watch Expressions View Location", "description": "Reset watch expressions view location", "category": "View Opening/Focus Commands" },
|
|
1312
|
+
{ "command": "workbench.debug.callStackView.open", "title": "Open Call Stack View", "description": "Open call stack view", "category": "View Opening/Focus Commands" },
|
|
1313
|
+
{ "command": "workbench.debug.action.focusCallStackView", "title": "Focus Call Stack View", "description": "Focus call stack view", "category": "View Opening/Focus Commands" },
|
|
1314
|
+
{ "command": "workbench.debug.callStackView.resetViewLocation", "title": "Reset Call Stack View Location", "description": "Reset call stack view location", "category": "View Opening/Focus Commands" },
|
|
1315
|
+
{ "command": "workbench.debug.loadedScriptsView.open", "title": "Open Loaded Scripts View", "description": "Open loaded scripts view", "category": "View Opening/Focus Commands" },
|
|
1316
|
+
{ "command": "workbench.debug.loadedScriptsView.focus", "title": "Focus Loaded Scripts View", "description": "Focus loaded scripts view", "category": "View Opening/Focus Commands" },
|
|
1317
|
+
{ "command": "workbench.debug.loadedScriptsView.resetViewLocation", "title": "Reset Loaded Scripts View Location", "description": "Reset loaded scripts view location", "category": "View Opening/Focus Commands" },
|
|
1318
|
+
{ "command": "workbench.debug.breakPointsView.open", "title": "Open Breakpoints View", "description": "Open breakpoints view", "category": "View Opening/Focus Commands" },
|
|
1319
|
+
{ "command": "workbench.debug.action.focusBreakpointsView", "title": "Focus Breakpoints View", "description": "Focus breakpoints view", "category": "View Opening/Focus Commands" },
|
|
1320
|
+
{ "command": "workbench.debug.breakPointsView.resetViewLocation", "title": "Reset Breakpoints View Location", "description": "Reset breakpoints view location", "category": "View Opening/Focus Commands" },
|
|
1321
|
+
{ "command": "workbench.view.debug", "title": "Open Debug View", "description": "Open debug view", "category": "View Opening/Focus Commands" },
|
|
1322
|
+
{ "command": "workbench.view.remote", "title": "Open Remote View", "description": "Open remote view", "category": "View Opening/Focus Commands" },
|
|
1323
|
+
{ "command": "workbench.views.service.sidebar.3264ea6a-e0b9-4b2c-a0c7-4f09350e8fb0.resetViewContainerLocation", "title": "Reset Service Sidebar View Container Location", "description": "Reset service sidebar view container location", "category": "View Opening/Focus Commands" },
|
|
1324
|
+
{ "command": "workbench.view.search", "title": "Open Search View", "description": "Open search view", "category": "View Opening/Focus Commands" },
|
|
1325
|
+
{ "command": "workbench.view.search.focus", "title": "Focus Search View", "description": "Focus search view", "category": "View Opening/Focus Commands" },
|
|
1326
|
+
{ "command": "workbench.view.search.resetViewLocation", "title": "Reset Search View Location", "description": "Reset search view location", "category": "View Opening/Focus Commands" },
|
|
1327
|
+
{ "command": "workbench.views.service.sidebar.d705666c-a06a-43ae-b07e-7dd29acdd6ee.resetViewContainerLocation", "title": "Reset Service Sidebar View Container Location", "description": "Reset service sidebar view container location", "category": "View Opening/Focus Commands" },
|
|
1328
|
+
{ "command": "workbench.view.scm", "title": "Open SCM View", "description": "Open SCM view", "category": "View Opening/Focus Commands" },
|
|
1329
|
+
{ "command": "workbench.scm.focus", "title": "Focus SCM View", "description": "Focus SCM view", "category": "View Opening/Focus Commands" },
|
|
1330
|
+
{ "command": "workbench.scm.resetViewLocation", "title": "Reset SCM View Location", "description": "Reset SCM view location", "category": "View Opening/Focus Commands" },
|
|
1331
|
+
{ "command": "workbench.panel.testResults.view.open", "title": "Open Test Results View", "description": "Open test results view", "category": "View Opening/Focus Commands" },
|
|
1332
|
+
{ "command": "workbench.panel.testResults.view.focus", "title": "Focus Test Results View", "description": "Focus test results view", "category": "View Opening/Focus Commands" },
|
|
1333
|
+
{ "command": "workbench.panel.testResults.view.resetViewLocation", "title": "Reset Test Results View Location", "description": "Reset test results view location", "category": "View Opening/Focus Commands" },
|
|
1334
|
+
{ "command": "refactorPreview.open", "title": "Open Refactor Preview", "description": "Open refactor preview", "category": "View Opening/Focus Commands" },
|
|
1335
|
+
{ "command": "refactorPreview.focus", "title": "Focus Refactor Preview", "description": "Focus refactor preview", "category": "View Opening/Focus Commands" },
|
|
1336
|
+
{ "command": "refactorPreview.resetViewLocation", "title": "Reset Refactor Preview View Location", "description": "Reset refactor preview view location", "category": "View Opening/Focus Commands" },
|
|
1337
|
+
{ "command": "refactorPreview", "title": "Refactor Preview", "description": "Open refactor preview", "category": "View Opening/Focus Commands" },
|
|
1338
|
+
{ "command": "workbench.actions.view.problems", "title": "Open Problems View", "description": "Open problems view", "category": "View Opening/Focus Commands" },
|
|
1339
|
+
{ "command": "workbench.panel.markers.view.focus", "title": "Focus Markers View", "description": "Focus markers view", "category": "View Opening/Focus Commands" },
|
|
1340
|
+
{ "command": "workbench.panel.markers.view.resetViewLocation", "title": "Reset Markers View Location", "description": "Reset markers view location", "category": "View Opening/Focus Commands" },
|
|
1341
|
+
{ "command": "workbench.debug.action.toggleRepl", "title": "Toggle REPL", "description": "Toggle REPL visibility", "category": "View Opening/Focus Commands" },
|
|
1342
|
+
{ "command": "workbench.panel.repl.view.focus", "title": "Focus REPL View", "description": "Focus REPL view", "category": "View Opening/Focus Commands" },
|
|
1343
|
+
{ "command": "workbench.panel.repl.view.resetViewLocation", "title": "Reset REPL View Location", "description": "Reset REPL view location", "category": "View Opening/Focus Commands" },
|
|
1344
|
+
{ "command": "workbench.action.output.toggleOutput", "title": "Toggle Output", "description": "Toggle output visibility", "category": "View Opening/Focus Commands" },
|
|
1345
|
+
{ "command": "workbench.panel.output.focus", "title": "Focus Output Panel", "description": "Focus output panel", "category": "View Opening/Focus Commands" },
|
|
1346
|
+
{ "command": "workbench.panel.output.resetViewLocation", "title": "Reset Output Panel View Location", "description": "Reset output panel view location", "category": "View Opening/Focus Commands" },
|
|
1347
|
+
{ "command": "workbench.views.service.panel.e93f6175-55af-4598-8176-c434529362f5.resetViewContainerLocation", "title": "Reset Service Panel View Container Location", "description": "Reset service panel view container location", "category": "View Opening/Focus Commands" },
|
|
1348
|
+
{ "command": "workbench.scm.repositories.open", "title": "Open SCM Repositories View", "description": "Open SCM repositories view", "category": "View Opening/Focus Commands" },
|
|
1349
|
+
{ "command": "workbench.scm.repositories.focus", "title": "Focus SCM Repositories View", "description": "Focus SCM repositories view", "category": "View Opening/Focus Commands" },
|
|
1350
|
+
{ "command": "workbench.scm.repositories.resetViewLocation", "title": "Reset SCM Repositories View Location", "description": "Reset SCM repositories view location", "category": "View Opening/Focus Commands" }
|
|
1351
|
+
];
|
|
1352
|
+
|
|
1353
|
+
// Title Bar & Window
|
|
1354
|
+
const titleBarCommands = [
|
|
1355
|
+
{ "command": "workbench.action.focusTitleBar", "title": "Focus Title Bar", "description": "Focus title bar", "category": "Title Bar & Window" },
|
|
1356
|
+
{ "command": "registerWindowTitleVariable", "title": "Register Window Title Variable", "description": "Register window title variable", "category": "Title Bar & Window" }
|
|
1357
|
+
];
|
|
1358
|
+
|
|
1359
|
+
// Settings Commands
|
|
1360
|
+
const settingsCommands = [
|
|
1361
|
+
{ "command": "workbench.action.openSettings", "title": "Open Settings", "description": "Open settings editor", "category": "Settings Commands" },
|
|
1362
|
+
{ "command": "workbench.action.openSettings2", "title": "Open Settings 2", "description": "Open settings editor (alternative)", "category": "Settings Commands" },
|
|
1363
|
+
{ "command": "workbench.action.openSettingsJson", "title": "Open Settings JSON", "description": "Open settings JSON file", "category": "Settings Commands" },
|
|
1364
|
+
{ "command": "workbench.action.openApplicationSettingsJson", "title": "Open Application Settings JSON", "description": "Open application settings JSON", "category": "Settings Commands" },
|
|
1365
|
+
{ "command": "workbench.action.openGlobalSettings", "title": "Open Global Settings", "description": "Open global settings", "category": "Settings Commands" },
|
|
1366
|
+
{ "command": "workbench.action.openRawDefaultSettings", "title": "Open Raw Default Settings", "description": "Open raw default settings", "category": "Settings Commands" },
|
|
1367
|
+
{ "command": "workbench.action.configureLanguageBasedSettings", "title": "Configure Language Based Settings", "description": "Configure language-based settings", "category": "Settings Commands" },
|
|
1368
|
+
{ "command": "workbench.action.openWorkspaceSettings", "title": "Open Workspace Settings", "description": "Open workspace settings", "category": "Settings Commands" },
|
|
1369
|
+
{ "command": "workbench.action.openAccessibilitySettings", "title": "Open Accessibility Settings", "description": "Open accessibility settings", "category": "Settings Commands" },
|
|
1370
|
+
{ "command": "workbench.action.openWorkspaceSettingsFile", "title": "Open Workspace Settings File", "description": "Open workspace settings file", "category": "Settings Commands" },
|
|
1371
|
+
{ "command": "workbench.action.openFolderSettings", "title": "Open Folder Settings", "description": "Open folder settings", "category": "Settings Commands" },
|
|
1372
|
+
{ "command": "workbench.action.openFolderSettingsFile", "title": "Open Folder Settings File", "description": "Open folder settings file", "category": "Settings Commands" },
|
|
1373
|
+
{ "command": "settings.filterByOnline", "title": "Filter Settings by Online", "description": "Filter settings by online availability", "category": "Settings Commands" },
|
|
1374
|
+
{ "command": "settings.action.toggleAiSearch", "title": "Toggle AI Search", "description": "Toggle AI search in settings", "category": "Settings Commands" },
|
|
1375
|
+
{ "command": "settings.filterUntrusted", "title": "Filter Untrusted Settings", "description": "Filter untrusted settings", "category": "Settings Commands" },
|
|
1376
|
+
{ "command": "settings.filterByTelemetry", "title": "Filter Settings by Telemetry", "description": "Filter settings by telemetry", "category": "Settings Commands" },
|
|
1377
|
+
{ "command": "settings.action.search", "title": "Search Settings", "description": "Search settings", "category": "Settings Commands" },
|
|
1378
|
+
{ "command": "settings.action.clearSearchResults", "title": "Clear Settings Search Results", "description": "Clear settings search results", "category": "Settings Commands" },
|
|
1379
|
+
{ "command": "settings.action.focusSettingsFile", "title": "Focus Settings File", "description": "Focus settings file", "category": "Settings Commands" },
|
|
1380
|
+
{ "command": "settings.action.focusSettingsFromSearch", "title": "Focus Settings from Search", "description": "Focus settings from search results", "category": "Settings Commands" },
|
|
1381
|
+
{ "command": "settings.action.focusSettingsList", "title": "Focus Settings List", "description": "Focus settings list", "category": "Settings Commands" },
|
|
1382
|
+
{ "command": "settings.action.focusTOC", "title": "Focus Settings TOC", "description": "Focus settings table of contents", "category": "Settings Commands" },
|
|
1383
|
+
{ "command": "settings.action.focusSettingControl", "title": "Focus Setting Control", "description": "Focus setting control", "category": "Settings Commands" },
|
|
1384
|
+
{ "command": "settings.action.showContextMenu", "title": "Show Settings Context Menu", "description": "Show settings context menu", "category": "Settings Commands" },
|
|
1385
|
+
{ "command": "settings.action.focusLevelUp", "title": "Focus Settings Level Up", "description": "Move focus up in settings hierarchy", "category": "Settings Commands" },
|
|
1386
|
+
{ "command": "settings.action.clearSearchResults", "title": "$(clear-all) Clear Search Results", "description": "Clears all search results from the settings search input", "category": "Settings" },
|
|
1387
|
+
{ "command": "settings.action.focusLevelUp", "title": "$(arrow-up) Focus Level Up", "description": "Moves focus up one level in the settings hierarchy", "category": "Settings" },
|
|
1388
|
+
{ "command": "settings.action.focusSettingControl", "title": "$(settings-gear) Focus Setting Control", "description": "Sets focus on the active settings control for editing", "category": "Settings" }
|
|
1389
|
+
];
|
|
1390
|
+
|
|
1391
|
+
// Keybindings Editor
|
|
1392
|
+
const keybindingsCommands = [
|
|
1393
|
+
{ "command": "workbench.action.openGlobalKeybindings", "title": "Open Global Keybindings", "description": "Open global keybindings editor", "category": "Keybindings Editor" },
|
|
1394
|
+
{ "command": "workbench.action.openDefaultKeybindingsFile", "title": "Open Default Keybindings File", "description": "Open default keybindings file", "category": "Keybindings Editor" },
|
|
1395
|
+
{ "command": "workbench.action.openGlobalKeybindingsFile", "title": "Open Global Keybindings File", "description": "Open global keybindings file", "category": "Keybindings Editor" },
|
|
1396
|
+
{ "command": "keybindings.editor.showDefaultKeybindings", "title": "Show Default Keybindings", "description": "Show default keybindings", "category": "Keybindings Editor" },
|
|
1397
|
+
{ "command": "keybindings.editor.showExtensionKeybindings", "title": "Show Extension Keybindings", "description": "Show extension keybindings", "category": "Keybindings Editor" },
|
|
1398
|
+
{ "command": "keybindings.editor.showUserKeybindings", "title": "Show User Keybindings", "description": "Show user keybindings", "category": "Keybindings Editor" },
|
|
1399
|
+
{ "command": "keybindings.editor.clearSearchResults", "title": "Clear Keybindings Search Results", "description": "Clear keybindings search results", "category": "Keybindings Editor" },
|
|
1400
|
+
{ "command": "keybindings.editor.clearSearchHistory", "title": "Clear Keybindings Search History", "description": "Clear keybindings search history", "category": "Keybindings Editor" },
|
|
1401
|
+
{ "command": "keybindings.editor.defineKeybinding", "title": "Define Keybinding", "description": "Define new keybinding", "category": "Keybindings Editor" },
|
|
1402
|
+
{ "command": "keybindings.editor.addKeybinding", "title": "Add Keybinding", "description": "Add new keybinding", "category": "Keybindings Editor" },
|
|
1403
|
+
{ "command": "keybindings.editor.defineWhenExpression", "title": "Define When Expression", "description": "Define when expression for keybinding", "category": "Keybindings Editor" },
|
|
1404
|
+
{ "command": "keybindings.editor.removeKeybinding", "title": "Remove Keybinding", "description": "Remove keybinding", "category": "Keybindings Editor" },
|
|
1405
|
+
{ "command": "keybindings.editor.resetKeybinding", "title": "Reset Keybinding", "description": "Reset keybinding to default", "category": "Keybindings Editor" },
|
|
1406
|
+
{ "command": "keybindings.editor.searchKeybindings", "title": "Search Keybindings", "description": "Search keybindings", "category": "Keybindings Editor" },
|
|
1407
|
+
{ "command": "keybindings.editor.recordSearchKeys", "title": "Record Search Keys", "description": "Record keys for search", "category": "Keybindings Editor" },
|
|
1408
|
+
{ "command": "keybindings.editor.toggleSortByPrecedence", "title": "Toggle Sort by Precedence", "description": "Toggle sort by precedence", "category": "Keybindings Editor" },
|
|
1409
|
+
{ "command": "keybindings.editor.showConflicts", "title": "Show Keybinding Conflicts", "description": "Show keybinding conflicts", "category": "Keybindings Editor" },
|
|
1410
|
+
{ "command": "keybindings.editor.copyKeybindingEntry", "title": "Copy Keybinding Entry", "description": "Copy keybinding entry", "category": "Keybindings Editor" },
|
|
1411
|
+
{ "command": "keybindings.editor.copyCommandKeybindingEntry", "title": "Copy Command Keybinding Entry", "description": "Copy command keybinding entry", "category": "Keybindings Editor" },
|
|
1412
|
+
{ "command": "keybindings.editor.copyCommandTitle", "title": "Copy Command Title", "description": "Copy command title", "category": "Keybindings Editor" },
|
|
1413
|
+
{ "command": "keybindings.editor.focusKeybindings", "title": "Focus Keybindings", "description": "Focus keybindings editor", "category": "Keybindings Editor" },
|
|
1414
|
+
{ "command": "keybindings.editor.rejectWhenExpression", "title": "Reject When Expression", "description": "Reject when expression", "category": "Keybindings Editor" },
|
|
1415
|
+
{ "command": "keybindings.editor.acceptWhenExpression", "title": "Accept When Expression", "description": "Accept when expression", "category": "Keybindings Editor" }
|
|
1416
|
+
];
|
|
1417
|
+
|
|
1418
|
+
// Activity Bar & Remote
|
|
1419
|
+
const activityBarCommands = [
|
|
1420
|
+
{ "command": "workbench.action.toggleActivityBarVisibility", "title": "Toggle Activity Bar Visibility", "description": "Toggle activity bar visibility", "category": "Activity Bar & Remote" },
|
|
1421
|
+
{ "command": "workbench.action.remote.showMenu", "title": "Show Remote Menu", "description": "Show remote menu", "category": "Activity Bar & Remote" },
|
|
1422
|
+
{ "command": "workbench.action.remote.close", "title": "Close Remote", "description": "Close remote connection", "category": "Activity Bar & Remote" }
|
|
1423
|
+
];
|
|
1424
|
+
|
|
1425
|
+
|
|
1426
|
+
// Chat/Copilot Commands
|
|
1427
|
+
const chatCommands = [
|
|
1428
|
+
{ "command": "workbench.action.chat.triggerSetup", "title": "Trigger Chat Setup", "description": "Trigger chat setup", "category": "Chat/Setup Commands" },
|
|
1429
|
+
{ "command": "workbench.action.chat.triggerSetupForceSignIn", "title": "Trigger Chat Setup Force Sign In", "description": "Trigger chat setup with forced sign in", "category": "Chat/Setup Commands" },
|
|
1430
|
+
{ "command": "workbench.action.chat.triggerSetupFromAccounts", "title": "Trigger Chat Setup from Accounts", "description": "Trigger chat setup from accounts", "category": "Chat/Setup Commands" },
|
|
1431
|
+
{ "command": "workbench.action.chat.triggerSetupAnonymousWithoutDialog", "title": "Trigger Chat Setup Anonymous Without Dialog", "description": "Trigger anonymous chat setup without dialog", "category": "Chat/Setup Commands" },
|
|
1432
|
+
{ "command": "workbench.action.chat.triggerSetupSupportAnonymousAction", "title": "Trigger Chat Setup Support Anonymous Action", "description": "Trigger chat setup supporting anonymous action", "category": "Chat/Setup Commands" },
|
|
1433
|
+
{ "command": "workbench.action.chat.upgradePlan", "title": "Upgrade Chat Plan", "description": "Upgrade chat plan", "category": "Chat/Setup Commands" },
|
|
1434
|
+
{ "command": "workbench.action.chat.manageOverages", "title": "Manage Chat Overages", "description": "Manage chat overages", "category": "Chat/Setup Commands" },
|
|
1435
|
+
{ "command": "chat.internal.explain", "title": "Chat Internal Explain", "description": "Internal chat explain command", "category": "Chat/Setup Commands" },
|
|
1436
|
+
{ "command": "chat.internal.fix", "title": "Chat Internal Fix", "description": "Internal chat fix command", "category": "Chat/Setup Commands" },
|
|
1437
|
+
{ "command": "chat.internal.review", "title": "Chat Internal Review", "description": "Internal chat review command", "category": "Chat/Setup Commands" },
|
|
1438
|
+
{ "command": "chat.internal.generateDocs", "title": "Chat Internal Generate Docs", "description": "Internal chat generate docs command", "category": "Chat/Setup Commands" },
|
|
1439
|
+
{ "command": "chat.internal.generateTests", "title": "Chat Internal Generate Tests", "description": "Internal chat generate tests command", "category": "Chat/Setup Commands" },
|
|
1440
|
+
{ "command": "workbench.view.chat.sessions.resetViewContainerLocation", "title": "Reset Chat Sessions View Container Location", "description": "Reset chat sessions view container location", "category": "Chat/Setup Commands" },
|
|
1441
|
+
{ "command": "workbench.view.chat.sessions", "title": "Open Chat Sessions View", "description": "Open chat sessions view", "category": "Chat/Setup Commands" },
|
|
1442
|
+
{ "command": "workbench.action.chat.addDynamicVariable", "title": "Add Dynamic Variable to Chat", "description": "Add dynamic variable to chat session", "category": "Chat/Copilot" },
|
|
1443
|
+
{ "command": "workbench.action.chat.toggleDefaultVisibility", "title": "Toggle Chat Default Visibility", "description": "Toggle default chat visibility", "category": "Chat/Copilot" },
|
|
1444
|
+
{ "command": "workbench.action.chat.editToolApproval", "title": "Edit Chat Tool Approval", "description": "Edit tool approval settings for chat", "category": "Chat/Copilot" },
|
|
1445
|
+
{ "command": "workbench.action.chat.toggleChatViewTitle", "title": "Toggle Chat View Title", "description": "Toggle chat view title display", "category": "Chat/Copilot" },
|
|
1446
|
+
{ "command": "workbench.action.chat.toggleChatViewSessions", "title": "Toggle Chat View Sessions", "description": "Toggle chat sessions view", "category": "Chat/Copilot" },
|
|
1447
|
+
{ "command": "workbench.action.chat.setAgentSessionsOrientationAuto", "title": "Set Agent Sessions Orientation Auto", "description": "Set auto orientation for agent sessions", "category": "Chat/Copilot" },
|
|
1448
|
+
{ "command": "workbench.action.chat.setAgentSessionsOrientationStacked", "title": "Set Agent Sessions Orientation Stacked", "description": "Set stacked orientation for agent sessions", "category": "Chat/Copilot" },
|
|
1449
|
+
{ "command": "workbench.action.chat.setAgentSessionsOrientationSideBySide", "title": "Set Agent Sessions Orientation Side by Side", "description": "Set side-by-side orientation for agent sessions", "category": "Chat/Copilot" },
|
|
1450
|
+
{ "command": "workbench.action.chat.toggleChatViewWelcome", "title": "Toggle Chat View Welcome", "description": "Toggle welcome message in chat view", "category": "Chat/Copilot" },
|
|
1451
|
+
{ "command": "chat.inlineResourceAnchor.addFileToChat", "title": "Add File to Chat", "description": "Add file reference to chat", "category": "Chat/Copilot" },
|
|
1452
|
+
{ "command": "chat.inlineResourceAnchor.copyResource", "title": "Copy Resource to Chat", "description": "Copy resource to chat", "category": "Chat/Copilot" },
|
|
1453
|
+
{ "command": "chat.inlineResourceAnchor.openToSide", "title": "Open Resource to Side", "description": "Open resource in side editor from chat", "category": "Chat/Copilot" },
|
|
1454
|
+
{ "command": "chat.inlineSymbolAnchor.goToDefinition", "title": "Go to Definition from Chat", "description": "Navigate to definition from chat symbol", "category": "Chat/Copilot" },
|
|
1455
|
+
{ "command": "chat.inlineSymbolAnchor.goToTypeDefinitions", "title": "Go to Type Definitions from Chat", "description": "Navigate to type definitions from chat symbol", "category": "Chat/Copilot" },
|
|
1456
|
+
{ "command": "chat.inlineSymbolAnchor.goToImplementations", "title": "Go to Implementations from Chat", "description": "Navigate to implementations from chat symbol", "category": "Chat/Copilot" },
|
|
1457
|
+
{ "command": "chat.inlineSymbolAnchor.goToReferences", "title": "Go to References from Chat", "description": "Navigate to references from chat symbol", "category": "Chat/Copilot" },
|
|
1458
|
+
{ "command": "workbench.action.chat.addToChatAction", "title": "Add to Chat", "description": "Add content to chat", "category": "Chat/Copilot" },
|
|
1459
|
+
{ "command": "workbench.action.chat.copyLink", "title": "Copy Chat Link", "description": "Copy chat session link", "category": "Chat/Copilot" },
|
|
1460
|
+
{ "command": "chatEditing.openFileInDiff", "title": "Open File in Diff from Chat", "description": "Open file in diff view from chat edits", "category": "Chat/Copilot" },
|
|
1461
|
+
{ "command": "chatEditing.acceptFile", "title": "Accept File Edits from Chat", "description": "Accept file edits suggested by chat", "category": "Chat/Copilot" },
|
|
1462
|
+
{ "command": "chatEditing.discardFile", "title": "Discard File Edits from Chat", "description": "Discard file edits suggested by chat", "category": "Chat/Copilot" },
|
|
1463
|
+
{ "command": "chatEditing.acceptAllFiles", "title": "Accept All File Edits from Chat", "description": "Accept all file edits from chat", "category": "Chat/Copilot" },
|
|
1464
|
+
{ "command": "chatEditing.discardAllFiles", "title": "Discard All File Edits from Chat", "description": "Discard all file edits from chat", "category": "Chat/Copilot" },
|
|
1465
|
+
{ "command": "chatEditing.viewChanges", "title": "View Chat Changes", "description": "View changes made by chat", "category": "Chat/Copilot" },
|
|
1466
|
+
{ "command": "chatEditing.viewAllSessionChanges", "title": "View All Session Changes", "description": "View all changes in chat session", "category": "Chat/Copilot" },
|
|
1467
|
+
{ "command": "workbench.action.chat.undoEdits", "title": "Undo Chat Edits", "description": "Undo edits made by chat", "category": "Chat/Copilot" },
|
|
1468
|
+
{ "command": "workbench.action.chat.restoreCheckpoint", "title": "Restore Chat Checkpoint", "description": "Restore chat to checkpoint", "category": "Chat/Copilot" },
|
|
1469
|
+
{ "command": "workbench.action.chat.restoreLastCheckpoint", "title": "Restore Last Chat Checkpoint", "description": "Restore chat to last checkpoint", "category": "Chat/Copilot" },
|
|
1470
|
+
{ "command": "workbench.action.chat.editRequests", "title": "Edit Chat Requests", "description": "Edit chat request history", "category": "Chat/Copilot" },
|
|
1471
|
+
{ "command": "chat.openFileUpdatedBySnapshot", "title": "Open File Updated by Snapshot", "description": "Open file updated by chat snapshot", "category": "Chat/Copilot" },
|
|
1472
|
+
{ "command": "chat.openFileSnapshot", "title": "Open File Snapshot", "description": "Open file snapshot from chat", "category": "Chat/Copilot" },
|
|
1473
|
+
{ "command": "workbench.action.edits.addFilesFromReferences", "title": "Add Files from References", "description": "Add files from references to edits", "category": "Chat/Copilot" },
|
|
1474
|
+
{ "command": "chatEditing.viewPreviousEdits", "title": "View Previous Edits", "description": "View previous chat edits", "category": "Chat/Copilot" }
|
|
1475
|
+
];
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
|
+
// Profile Management
|
|
1479
|
+
const profileCommands = [
|
|
1480
|
+
{ "command": "workbench.profiles.actions.manageProfiles", "title": "Manage Profiles", "description": "Manage user profiles", "category": "Profile Management" },
|
|
1481
|
+
{ "command": "workbench.profiles.actions.switchProfile", "title": "Switch Profile", "description": "Switch between profiles", "category": "Profile Management" },
|
|
1482
|
+
{ "command": "workbench.profiles.actions.newWindowWithProfile", "title": "New Window with Profile", "description": "Open new window with profile", "category": "Profile Management" },
|
|
1483
|
+
{ "command": "workbench.profiles.actions.profileEntry.__default__profile__", "title": "Default Profile Entry", "description": "Default profile entry", "category": "Profile Management" },
|
|
1484
|
+
{ "command": "workbench.action.openProfile.Default", "title": "Open Default Profile", "description": "Open default profile", "category": "Profile Management" },
|
|
1485
|
+
{ "command": "workbench.profiles.actions.profileEntry.55de5399", "title": "Profile Entry 55de5399", "description": "Specific profile entry", "category": "Profile Management" },
|
|
1486
|
+
{ "command": "workbench.action.openProfile.skyler", "title": "Open Profile Skyler", "description": "Open Skyler profile", "category": "Profile Management" },
|
|
1487
|
+
{ "command": "workbench.profiles.actions.exportProfile", "title": "Export Profile", "description": "Export profile", "category": "Profile Management" },
|
|
1488
|
+
{ "command": "workbench.profiles.actions.createFromCurrentProfile", "title": "Create Profile from Current", "description": "Create profile from current settings", "category": "Profile Management" },
|
|
1489
|
+
{ "command": "workbench.profiles.actions.createProfile", "title": "Create Profile", "description": "Create new profile", "category": "Profile Management" },
|
|
1490
|
+
{ "command": "workbench.profiles.actions.deleteProfile", "title": "Delete Profile", "description": "Delete profile", "category": "Profile Management" },
|
|
1491
|
+
{ "command": "workbench.profiles.actions.help", "title": "Profile Help", "description": "Get help with profiles", "category": "Profile Management" }
|
|
1492
|
+
];
|
|
1493
|
+
|
|
1494
|
+
// Notifications
|
|
1495
|
+
const notificationCommands = [
|
|
1496
|
+
{ "command": "showEditorScreenReaderNotification", "title": "Show Editor Screen Reader Notification", "description": "Show screen reader notification in editor", "category": "Notifications" },
|
|
1497
|
+
{ "command": "workbench.action.showHover", "title": "Show Hover", "description": "Show hover information", "category": "Notifications" },
|
|
1498
|
+
{ "command": "notifications.showList", "title": "Show Notifications List", "description": "Show notifications list", "category": "Notifications" },
|
|
1499
|
+
{ "command": "notifications.hideList", "title": "Hide Notifications List", "description": "Hide notifications list", "category": "Notifications" },
|
|
1500
|
+
{ "command": "notifications.toggleList", "title": "Toggle Notifications List", "description": "Toggle notifications list visibility", "category": "Notifications" },
|
|
1501
|
+
{ "command": "notification.clear", "title": "Clear Notification", "description": "Clear notification", "category": "Notifications" },
|
|
1502
|
+
{ "command": "notification.expand", "title": "Expand Notification", "description": "Expand notification", "category": "Notifications" },
|
|
1503
|
+
{ "command": "notification.acceptPrimaryAction", "title": "Accept Notification Primary Action", "description": "Accept primary action in notification", "category": "Notifications" },
|
|
1504
|
+
{ "command": "notification.collapse", "title": "Collapse Notification", "description": "Collapse notification", "category": "Notifications" },
|
|
1505
|
+
{ "command": "notification.toggle", "title": "Toggle Notification", "description": "Toggle notification", "category": "Notifications" },
|
|
1506
|
+
{ "command": "notifications.hideToasts", "title": "Hide Notification Toasts", "description": "Hide notification toasts", "category": "Notifications" },
|
|
1507
|
+
{ "command": "notifications.focusToasts", "title": "Focus Notification Toasts", "description": "Focus notification toasts", "category": "Notifications" },
|
|
1508
|
+
{ "command": "notifications.focusNextToast", "title": "Focus Next Notification Toast", "description": "Focus next notification toast", "category": "Notifications" },
|
|
1509
|
+
{ "command": "notifications.focusPreviousToast", "title": "Focus Previous Notification Toast", "description": "Focus previous notification toast", "category": "Notifications" },
|
|
1510
|
+
{ "command": "notifications.focusFirstToast", "title": "Focus First Notification Toast", "description": "Focus first notification toast", "category": "Notifications" },
|
|
1511
|
+
{ "command": "notifications.focusLastToast", "title": "Focus Last Notification Toast", "description": "Focus last notification toast", "category": "Notifications" },
|
|
1512
|
+
{ "command": "notifications.clearAll", "title": "Clear All Notifications", "description": "Clear all notifications", "category": "Notifications" },
|
|
1513
|
+
{ "command": "notifications.toggleDoNotDisturbMode", "title": "Toggle Do Not Disturb Mode", "description": "Toggle do not disturb mode", "category": "Notifications" },
|
|
1514
|
+
{ "command": "notifications.toggleDoNotDisturbModeBySource", "title": "Toggle Do Not Disturb Mode by Source", "description": "Toggle do not disturb mode by source", "category": "Notifications" }
|
|
1515
|
+
];
|
|
1516
|
+
|
|
1517
|
+
// Explorer Views
|
|
1518
|
+
const explorerCommands = [
|
|
1519
|
+
{ "command": "workbench.explorer.openEditorsView.open", "title": "Open Open Editors View", "description": "Open open editors view", "category": "Explorer Views" },
|
|
1520
|
+
{ "command": "workbench.files.action.focusOpenEditorsView", "title": "Focus Open Editors View", "description": "Focus open editors view", "category": "Explorer Views" },
|
|
1521
|
+
{ "command": "workbench.explorer.openEditorsView.resetViewLocation", "title": "Reset Open Editors View Location", "description": "Reset open editors view location", "category": "Explorer Views" },
|
|
1522
|
+
{ "command": "workbench.explorer.fileView.open", "title": "Open File View", "description": "Open file view", "category": "Explorer Views" },
|
|
1523
|
+
{ "command": "workbench.explorer.fileView.focus", "title": "Focus File View", "description": "Focus file view", "category": "Explorer Views" },
|
|
1524
|
+
{ "command": "workbench.explorer.fileView.resetViewLocation", "title": "Reset File View Location", "description": "Reset file view location", "category": "Explorer Views" }
|
|
1525
|
+
];
|
|
1526
|
+
|
|
1527
|
+
// Third-party Extension Views
|
|
1528
|
+
const thirdPartyExtensionCommands = [
|
|
1529
|
+
{ "command": "workbench.view.extension.references-view.resetViewContainerLocation", "title": "Reset References View Extension View Container Location", "description": "Reset references view extension view container location", "category": "Third-party Extension Views" },
|
|
1530
|
+
{ "command": "workbench.view.extension.references-view", "title": "Open References View Extension", "description": "Open references view extension", "category": "Third-party Extension Views" },
|
|
1531
|
+
{ "command": "workbench.view.extension.prismaActivitybar.resetViewContainerLocation", "title": "Reset Prisma Activity Bar Extension View Container Location", "description": "Reset Prisma activity bar extension view container location", "category": "Third-party Extension Views" },
|
|
1532
|
+
{ "command": "workbench.view.extension.prismaActivitybar", "title": "Open Prisma Activity Bar Extension", "description": "Open Prisma activity bar extension", "category": "Third-party Extension Views" },
|
|
1533
|
+
{ "command": "workbench.view.extension.ocrmnavigator.resetViewContainerLocation", "title": "Reset OCR Navigator Extension View Container Location", "description": "Reset OCR navigator extension view container location", "category": "Third-party Extension Views" },
|
|
1534
|
+
{ "command": "workbench.view.extension.ocrmnavigator", "title": "Open OCR Navigator Extension", "description": "Open OCR navigator extension", "category": "Third-party Extension Views" },
|
|
1535
|
+
{ "command": "workbench.view.extension.devstacktodo.resetViewContainerLocation", "title": "Reset DevStack Todo Extension View Container Location", "description": "Reset DevStack todo extension view container location", "category": "Third-party Extension Views" },
|
|
1536
|
+
{ "command": "workbench.view.extension.devstacktodo", "title": "Open DevStack Todo Extension", "description": "Open DevStack todo extension", "category": "Third-party Extension Views" },
|
|
1537
|
+
{ "command": "jsBrowserBreakpoints.open", "title": "Open JS Browser Breakpoints", "description": "Open JS browser breakpoints view", "category": "Third-party Extension Views" },
|
|
1538
|
+
{ "command": "jsBrowserBreakpoints.focus", "title": "Focus JS Browser Breakpoints", "description": "Focus JS browser breakpoints view", "category": "Third-party Extension Views" },
|
|
1539
|
+
{ "command": "jsBrowserBreakpoints.resetViewLocation", "title": "Reset JS Browser Breakpoints View Location", "description": "Reset JS browser breakpoints view location", "category": "Third-party Extension Views" },
|
|
1540
|
+
{ "command": "jsExcludedCallers.open", "title": "Open JS Excluded Callers", "description": "Open JS excluded callers view", "category": "Third-party Extension Views" },
|
|
1541
|
+
{ "command": "jsExcludedCallers.focus", "title": "Focus JS Excluded Callers", "description": "Focus JS excluded callers view", "category": "Third-party Extension Views" },
|
|
1542
|
+
{ "command": "jsExcludedCallers.resetViewLocation", "title": "Reset JS Excluded Callers View Location", "description": "Reset JS excluded callers view location", "category": "Third-party Extension Views" },
|
|
1543
|
+
{ "command": "jsDebugNetworkTree.open", "title": "Open JS Debug Network Tree", "description": "Open JS debug network tree view", "category": "Third-party Extension Views" },
|
|
1544
|
+
{ "command": "jsDebugNetworkTree.focus", "title": "Focus JS Debug Network Tree", "description": "Focus JS debug network tree view", "category": "Third-party Extension Views" },
|
|
1545
|
+
{ "command": "jsDebugNetworkTree.resetViewLocation", "title": "Reset JS Debug Network Tree View Location", "description": "Reset JS debug network tree view location", "category": "Third-party Extension Views" },
|
|
1546
|
+
{ "command": "references-view.tree.open", "title": "Open References View Tree", "description": "Open references view tree", "category": "Third-party Extension Views" },
|
|
1547
|
+
{ "command": "references-view.tree.focus", "title": "Focus References View Tree", "description": "Focus references view tree", "category": "Third-party Extension Views" },
|
|
1548
|
+
{ "command": "references-view.tree.resetViewLocation", "title": "Reset References View Tree View Location", "description": "Reset references view tree view location", "category": "Third-party Extension Views" },
|
|
1549
|
+
{ "command": "prismaPostgresDatabases.open", "title": "Open Prisma Postgres Databases", "description": "Open Prisma Postgres databases view", "category": "Third-party Extension Views" },
|
|
1550
|
+
{ "command": "prismaPostgresDatabases.focus", "title": "Focus Prisma Postgres Databases", "description": "Focus Prisma Postgres databases view", "category": "Third-party Extension Views" },
|
|
1551
|
+
{ "command": "prismaPostgresDatabases.resetViewLocation", "title": "Reset Prisma Postgres Databases View Location", "description": "Reset Prisma Postgres databases view location", "category": "Third-party Extension Views" },
|
|
1552
|
+
{ "command": "workbench.views.service.auxiliarybar.9e62d474-db52-4122-bf48-3b5b04b89013.resetViewContainerLocation", "title": "Reset Auxiliary Bar View Container Location", "description": "Reset auxiliary bar view container location", "category": "Third-party Extension Views" }
|
|
1553
|
+
];
|
|
1554
|
+
|
|
1555
|
+
// View Toggle/Remove Commands
|
|
1556
|
+
const viewToggleCommands = [
|
|
1557
|
+
{ "command": "workbench.debug.variablesView.toggleVisibility", "title": "Toggle Variables View Visibility", "description": "Toggle debug variables view visibility", "category": "View Toggle/Remove Commands" },
|
|
1558
|
+
{ "command": "workbench.debug.variablesView.removeView", "title": "Remove Variables View", "description": "Remove debug variables view", "category": "View Toggle/Remove Commands" },
|
|
1559
|
+
{ "command": "workbench.debug.watchExpressionsView.toggleVisibility", "title": "Toggle Watch Expressions View Visibility", "description": "Toggle watch expressions view visibility", "category": "View Toggle/Remove Commands" },
|
|
1560
|
+
{ "command": "workbench.debug.watchExpressionsView.removeView", "title": "Remove Watch Expressions View", "description": "Remove watch expressions view", "category": "View Toggle/Remove Commands" },
|
|
1561
|
+
{ "command": "workbench.debug.callStackView.toggleVisibility", "title": "Toggle Call Stack View Visibility", "description": "Toggle call stack view visibility", "category": "View Toggle/Remove Commands" },
|
|
1562
|
+
{ "command": "workbench.debug.callStackView.removeView", "title": "Remove Call Stack View", "description": "Remove call stack view", "category": "View Toggle/Remove Commands" },
|
|
1563
|
+
{ "command": "workbench.debug.breakPointsView.toggleVisibility", "title": "Toggle Breakpoints View Visibility", "description": "Toggle breakpoints view visibility", "category": "View Toggle/Remove Commands" },
|
|
1564
|
+
{ "command": "workbench.debug.breakPointsView.removeView", "title": "Remove Breakpoints View", "description": "Remove breakpoints view", "category": "View Toggle/Remove Commands" },
|
|
1565
|
+
{ "command": "workbench.panel.output.toggleVisibility", "title": "Toggle Output Panel Visibility", "description": "Toggle output panel visibility", "category": "View Toggle/Remove Commands" },
|
|
1566
|
+
{ "command": "workbench.panel.output.removeView", "title": "Remove Output Panel", "description": "Remove output panel", "category": "View Toggle/Remove Commands" },
|
|
1567
|
+
{ "command": "workbench.view.search.toggleVisibility", "title": "Toggle Search View Visibility", "description": "Toggle search view visibility", "category": "View Toggle/Remove Commands" },
|
|
1568
|
+
{ "command": "workbench.view.search.removeView", "title": "Remove Search View", "description": "Remove search view", "category": "View Toggle/Remove Commands" },
|
|
1569
|
+
{ "command": "workbench.scm.toggleVisibility", "title": "Toggle SCM View Visibility", "description": "Toggle SCM view visibility", "category": "View Toggle/Remove Commands" },
|
|
1570
|
+
{ "command": "workbench.scm.removeView", "title": "Remove SCM View", "description": "Remove SCM view", "category": "View Toggle/Remove Commands" },
|
|
1571
|
+
{ "command": "prismaPostgresDatabases.toggleVisibility", "title": "Toggle Prisma Postgres Databases Visibility", "description": "Toggle Prisma Postgres databases view visibility", "category": "View Toggle/Remove Commands" },
|
|
1572
|
+
{ "command": "prismaPostgresDatabases.removeView", "title": "Remove Prisma Postgres Databases View", "description": "Remove Prisma Postgres databases view", "category": "View Toggle/Remove Commands" },
|
|
1573
|
+
{ "command": "devstacktodopane.toggleVisibility", "title": "Toggle DevStack Todo Pane Visibility", "description": "Toggle DevStack todo pane visibility", "category": "View Toggle/Remove Commands" },
|
|
1574
|
+
{ "command": "devstacktodopane.removeView", "title": "Remove DevStack Todo Pane", "description": "Remove DevStack todo pane", "category": "View Toggle/Remove Commands" },
|
|
1575
|
+
{ "command": "devstacknotes.toggleVisibility", "title": "Toggle DevStack Notes Visibility", "description": "Toggle DevStack notes view visibility", "category": "View Toggle/Remove Commands" },
|
|
1576
|
+
{ "command": "devstacknotes.removeView", "title": "Remove DevStack Notes View", "description": "Remove DevStack notes view", "category": "View Toggle/Remove Commands" },
|
|
1577
|
+
{ "command": "devstackreminder.toggleVisibility", "title": "Toggle DevStack Reminder Visibility", "description": "Toggle DevStack reminder view visibility", "category": "View Toggle/Remove Commands" },
|
|
1578
|
+
{ "command": "devstackreminder.removeView", "title": "Remove DevStack Reminder View", "description": "Remove DevStack reminder view", "category": "View Toggle/Remove Commands" },
|
|
1579
|
+
{ "command": "devstackpostitpad.toggleVisibility", "title": "Toggle DevStack Post-It Pad Visibility", "description": "Toggle DevStack post-it pad view visibility", "category": "View Toggle/Remove Commands" },
|
|
1580
|
+
{ "command": "devstackpostitpad.removeView", "title": "Remove DevStack Post-It Pad View", "description": "Remove DevStack post-it pad view", "category": "View Toggle/Remove Commands" },
|
|
1581
|
+
{ "command": "ocrmnavigatorNavigator.toggleVisibility", "title": "Toggle OCR Navigator Visibility", "description": "Toggle OCR navigator view visibility", "category": "View Toggle/Remove Commands" },
|
|
1582
|
+
{ "command": "ocrmnavigatorNavigator.removeView", "title": "Remove OCR Navigator View", "description": "Remove OCR navigator view", "category": "View Toggle/Remove Commands" },
|
|
1583
|
+
{ "command": "workbench.action.openRemoteSettings", "title": "Open Remote Settings", "description": "Open remote settings", "category": "View Toggle/Remove Commands" },
|
|
1584
|
+
{ "command": "workbench.action.openRemoteSettingsFile", "title": "Open Remote Settings File", "description": "Open remote settings file", "category": "View Toggle/Remove Commands" }
|
|
1585
|
+
];
|
|
1586
|
+
|
|
1587
|
+
// Third-party Extension Actions
|
|
1588
|
+
const thirdPartyExtensionActions = [
|
|
1589
|
+
{ "command": "workbench.actions.treeView.ocrmnavigatorNavigator.refresh", "title": "Refresh OCR Navigator Tree View", "description": "Refresh OCR navigator tree view", "category": "Third-party Extension Actions" },
|
|
1590
|
+
{ "command": "workbench.actions.treeView.ocrmnavigatorNavigator.collapseAll", "title": "Collapse All OCR Navigator Tree View", "description": "Collapse all items in OCR navigator tree view", "category": "Third-party Extension Actions" }
|
|
1591
|
+
];
|
|
1592
|
+
|
|
1593
|
+
// Tasks (Workbench)
|
|
1594
|
+
const workbenchTasksCommands = [
|
|
1595
|
+
{ "command": "workbench.action.tasks.runTask", "title": "Run Task", "description": "Run selected task", "category": "Tasks (Workbench)" },
|
|
1596
|
+
{ "command": "workbench.action.tasks.reRunTask", "title": "Rerun Task", "description": "Rerun last task", "category": "Tasks (Workbench)" },
|
|
1597
|
+
{ "command": "workbench.action.tasks.restartTask", "title": "Restart Task", "description": "Restart task", "category": "Tasks (Workbench)" },
|
|
1598
|
+
{ "command": "workbench.action.tasks.rerunAllRunningTasks", "title": "Rerun All Running Tasks", "description": "Rerun all currently running tasks", "category": "Tasks (Workbench)" },
|
|
1599
|
+
{ "command": "workbench.action.tasks.terminate", "title": "Terminate Task", "description": "Terminate running task", "category": "Tasks (Workbench)" },
|
|
1600
|
+
{ "command": "workbench.action.tasks.showLog", "title": "Show Task Log", "description": "Show task log", "category": "Tasks (Workbench)" },
|
|
1601
|
+
{ "command": "workbench.action.tasks.build", "title": "Build Task", "description": "Run build task", "category": "Tasks (Workbench)" },
|
|
1602
|
+
{ "command": "workbench.action.tasks.test", "title": "Test Task", "description": "Run test task", "category": "Tasks (Workbench)" },
|
|
1603
|
+
{ "command": "workbench.action.tasks.configureTaskRunner", "title": "Configure Task Runner", "description": "Configure task runner", "category": "Tasks (Workbench)" },
|
|
1604
|
+
{ "command": "workbench.action.tasks.configureDefaultBuildTask", "title": "Configure Default Build Task", "description": "Configure default build task", "category": "Tasks (Workbench)" },
|
|
1605
|
+
{ "command": "workbench.action.tasks.configureDefaultTestTask", "title": "Configure Default Test Task", "description": "Configure default test task", "category": "Tasks (Workbench)" },
|
|
1606
|
+
{ "command": "workbench.action.tasks.showTasks", "title": "Show Tasks", "description": "Show available tasks", "category": "Tasks (Workbench)" },
|
|
1607
|
+
{ "command": "workbench.action.tasks.toggleProblems", "title": "Toggle Task Problems", "description": "Toggle task problems display", "category": "Tasks (Workbench)" },
|
|
1608
|
+
{ "command": "workbench.action.tasks.openUserTasks", "title": "Open User Tasks", "description": "Open user tasks configuration", "category": "Tasks (Workbench)" },
|
|
1609
|
+
{ "command": "workbench.action.tasks.openWorkspaceFileTasks", "title": "Open Workspace File Tasks", "description": "Open workspace file tasks configuration", "category": "Tasks (Workbench)" }
|
|
1610
|
+
];
|
|
1611
|
+
|
|
1612
|
+
// Markers Panel
|
|
1613
|
+
const markersPanelCommands = [
|
|
1614
|
+
{ "command": "workbench.panel.markers.view.toggleVisibility", "title": "Toggle Markers Panel Visibility", "description": "Toggle markers panel visibility", "category": "Markers Panel" },
|
|
1615
|
+
{ "command": "workbench.panel.markers.view.removeView", "title": "Remove Markers Panel View", "description": "Remove markers panel view", "category": "Markers Panel" }
|
|
1616
|
+
];
|
|
1617
|
+
|
|
1618
|
+
// Repl Panel
|
|
1619
|
+
const replPanelCommands = [
|
|
1620
|
+
{ "command": "workbench.panel.repl.view.toggleVisibility", "title": "Toggle REPL Panel Visibility", "description": "Toggle REPL panel visibility", "category": "Repl Panel" },
|
|
1621
|
+
{ "command": "workbench.panel.repl.view.removeView", "title": "Remove REPL Panel View", "description": "Remove REPL panel view", "category": "Repl Panel" }
|
|
1622
|
+
];
|
|
1623
|
+
|
|
1624
|
+
// Terminal Profiles
|
|
1625
|
+
const terminalProfileCommands = [
|
|
1626
|
+
{ "command": "workbench.action.terminal.newWithProfile", "title": "New Terminal with Profile", "description": "Create new terminal with specific profile", "category": "Terminal Profiles" }
|
|
1627
|
+
];
|
|
1628
|
+
|
|
1629
|
+
// Inline Suggest
|
|
1630
|
+
const inlineSuggestCommands = [
|
|
1631
|
+
{ "command": "editor.action.inlineSuggest.renameSymbol", "title": "Rename Symbol from Inline Suggest", "description": "Rename symbol from inline suggestion", "category": "Inline Suggest" }
|
|
1632
|
+
];
|
|
1633
|
+
|
|
1634
|
+
// Telemetry
|
|
1635
|
+
const telemetryCommands = [
|
|
1636
|
+
{ "command": "workbench.action.showTelemetry", "title": "Show Telemetry", "description": "Show telemetry information", "category": "Telemetry" }
|
|
1637
|
+
];
|
|
1638
|
+
|
|
1639
|
+
// Settings JSON
|
|
1640
|
+
const settingsJsonCommands = [
|
|
1641
|
+
{ "command": "settings.switchToJSON", "title": "Switch Settings to JSON", "description": "Switch settings editor to JSON mode", "category": "Settings JSON" }
|
|
1642
|
+
];
|
|
1643
|
+
|
|
1644
|
+
// Accounts
|
|
1645
|
+
const accountsCommands = [
|
|
1646
|
+
{ "command": "workbench.actions.accounts.signIn", "title": "Sign In to Account", "description": "Sign in to account", "category": "Accounts" }
|
|
1647
|
+
];
|
|
1648
|
+
|
|
1649
|
+
// Chat Hide
|
|
1650
|
+
const chatHideCommands = [
|
|
1651
|
+
{ "command": "workbench.action.chat.hideSetup", "title": "Hide Chat Setup", "description": "Hide chat setup", "category": "Chat Hide" }
|
|
1652
|
+
];
|
|
1653
|
+
|
|
1654
|
+
// TypeScript/JavaScript Extension
|
|
1655
|
+
const typescriptCommands = [
|
|
1656
|
+
{ "command": "typescript.reloadProjects", "title": "Reload TypeScript Projects", "description": "Reload TypeScript projects", "category": "TypeScript/JavaScript Extension" },
|
|
1657
|
+
{ "command": "javascript.reloadProjects", "title": "Reload JavaScript Projects", "description": "Reload JavaScript projects", "category": "TypeScript/JavaScript Extension" },
|
|
1658
|
+
{ "command": "typescript.selectTypeScriptVersion", "title": "Select TypeScript Version", "description": "Select TypeScript version", "category": "TypeScript/JavaScript Extension" },
|
|
1659
|
+
{ "command": "typescript.openTsServerLog", "title": "Open TypeScript Server Log", "description": "Open TypeScript server log", "category": "TypeScript/JavaScript Extension" },
|
|
1660
|
+
{ "command": "typescript.restartTsServer", "title": "Restart TypeScript Server", "description": "Restart TypeScript server", "category": "TypeScript/JavaScript Extension" },
|
|
1661
|
+
{ "command": "typescript.goToProjectConfig", "title": "Go to TypeScript Project Config", "description": "Navigate to TypeScript project configuration", "category": "TypeScript/JavaScript Extension" },
|
|
1662
|
+
{ "command": "javascript.goToProjectConfig", "title": "Go to JavaScript Project Config", "description": "Navigate to JavaScript project configuration", "category": "TypeScript/JavaScript Extension" },
|
|
1663
|
+
{ "command": "typescript.tsserverRequest", "title": "TypeScript Server Request", "description": "Make TypeScript server request", "category": "TypeScript/JavaScript Extension" },
|
|
1664
|
+
{ "command": "typescript.experimental.enableTsgo", "title": "Enable TypeScript Go", "description": "Enable TypeScript go feature", "category": "TypeScript/JavaScript Extension" },
|
|
1665
|
+
{ "command": "typescript.experimental.disableTsgo", "title": "Disable TypeScript Go", "description": "Disable TypeScript go feature", "category": "TypeScript/JavaScript Extension" },
|
|
1666
|
+
{ "command": "js.projectStatus.command", "title": "JavaScript Project Status Command", "description": "Show JavaScript project status", "category": "TypeScript/JavaScript Extension" }
|
|
1667
|
+
];
|
|
1668
|
+
|
|
1669
|
+
|
|
1670
|
+
|
|
1671
|
+
const settingsmenu = [
|
|
1672
|
+
{ "command": "settings.action.clearSearchResults", "title": "$(clear-all) Clear Search Results", "description": "Clears all search results from the settings search input", "category": "Settings" },
|
|
1673
|
+
{ "command": "settings.action.focusLevelUp", "title": "$(arrow-up) Focus Level Up", "description": "Moves focus up one level in the settings hierarchy", "category": "Settings" },
|
|
1674
|
+
{ "command": "settings.action.focusSettingControl", "title": "$(settings-gear) Focus Setting Control", "description": "Sets focus on the active settings control for editing", "category": "Settings" },
|
|
1675
|
+
{ "command": "settings.action.clearSearchResults", "title": "$(clear-all) Clear Search Results", "description": "Clears all search results from the settings search input", "category": "Settings" },
|
|
1676
|
+
{ "command": "settings.action.focusLevelUp", "title": "$(arrow-up) Focus Level Up", "description": "Moves focus up one level in the settings hierarchy", "category": "Settings" },
|
|
1677
|
+
{ "command": "settings.action.focusSettingControl", "title": "$(settings-gear) Focus Setting Control", "description": "Sets focus on the active settings control for editing", "category": "Settings" },
|
|
1678
|
+
{ "command": "settings.action.focusSettingsFile", "title": "$(file) Focus Settings File", "description": "Navigates focus to the settings.json file editor", "category": "Settings" },
|
|
1679
|
+
{ "command": "settings.action.focusSettingsFromSearch", "title": "$(search) Focus Settings From Search", "description": "Jumps to a setting from search results and focuses it", "category": "Settings" },
|
|
1680
|
+
{ "command": "settings.action.focusSettingsList", "title": "$(list-unordered) Focus Settings List", "description": "Sets focus to the main settings list view", "category": "Settings" },
|
|
1681
|
+
{ "command": "settings.action.focusTOC", "title": "$(list-ordered) Focus Table of Contents", "description": "Focuses the settings table of contents navigation", "category": "Settings" },
|
|
1682
|
+
{ "command": "settings.action.search", "title": "$(search) Search Settings", "description": "Opens search within settings to find specific configurations", "category": "Settings" },
|
|
1683
|
+
{ "command": "settings.action.showContextMenu", "title": "$(menu) Show Context Menu", "description": "Displays context menu for the selected setting", "category": "Settings" },
|
|
1684
|
+
{ "command": "settings.action.toggleAiSearch", "title": "$(sparkle) Toggle AI Search", "description": "Enables or disables AI-powered search in settings", "category": "Settings" },
|
|
1685
|
+
{ "command": "settings.filterByOnline", "title": "$(cloud) Filter By Online", "description": "Filters settings to show only those available when online", "category": "Settings" },
|
|
1686
|
+
{ "command": "settings.filterByTelemetry", "title": "$(dashboard) Filter By Telemetry", "description": "Filters settings related to telemetry and data collection", "category": "Settings" },
|
|
1687
|
+
{ "command": "settings.filterUntrusted", "title": "$(shield) Filter Untrusted", "description": "Filters out settings from untrusted sources or workspaces", "category": "Settings" },
|
|
1688
|
+
{ "command": "settings.switchToJSON", "title": "$(code) Switch to JSON", "description": "Switches settings editor from UI to raw JSON mode", "category": "Settings" },
|
|
1689
|
+
]
|
|
1690
|
+
// Search Commands
|
|
1691
|
+
const searchCommands = [
|
|
1692
|
+
{ "command": "search.action.openResult", "title": "$(search) Open Search Result", "description": "Open the selected search result", "category": "Search" },
|
|
1693
|
+
{ "command": "search.action.openResultToSide", "title": "$(split-horizontal) Open Search Result to Side", "description": "Open the selected search result in a side editor", "category": "Search" },
|
|
1694
|
+
{ "command": "addCursorsAtSearchResults", "title": "$(add) Add Cursors at Search Results", "description": "Add cursors at all search result locations", "category": "Search" },
|
|
1695
|
+
{ "command": "search.focus.nextInputBox", "title": "$(arrow-down) Focus Next Search Input", "description": "Move focus to the next search input box", "category": "Search" },
|
|
1696
|
+
{ "command": "search.focus.previousInputBox", "title": "$(arrow-up) Focus Previous Search Input", "description": "Move focus to the previous search input box", "category": "Search" },
|
|
1697
|
+
{ "command": "search.action.focusSearchFromResults", "title": "$(search) Focus Search from Results", "description": "Move focus from results back to search input", "category": "Search" },
|
|
1698
|
+
{ "command": "workbench.action.toggleSearchOnType", "title": "$(zap) Toggle Search on Type", "description": "Toggle search-as-you-type functionality", "category": "Search" },
|
|
1699
|
+
{ "command": "search.action.focusSearchList", "title": "$(list-ordered) Focus Search List", "description": "Focus the list of search results", "category": "Search" },
|
|
1700
|
+
{ "command": "search.action.focusNextSearchResult", "title": "$(arrow-down) Focus Next Search Result", "description": "Move focus to the next search result", "category": "Search" },
|
|
1701
|
+
{ "command": "search.action.focusPreviousSearchResult", "title": "$(arrow-up) Focus Previous Search Result", "description": "Move focus to the previous search result", "category": "Search" },
|
|
1702
|
+
{ "command": "workbench.action.replaceInFiles", "title": "$(replace) Replace in Files", "description": "Open replace in files dialog", "category": "Search" },
|
|
1703
|
+
{ "command": "search.action.remove", "title": "$(trash) Remove Search Result", "description": "Remove the selected search result", "category": "Search" },
|
|
1704
|
+
{ "command": "search.action.replace", "title": "$(replace) Replace", "description": "Replace the current search match", "category": "Search" },
|
|
1705
|
+
{ "command": "search.action.replaceAllInFile", "title": "$(replace-all) Replace All in File", "description": "Replace all matches in the current file", "category": "Search" },
|
|
1706
|
+
{ "command": "search.action.replaceAllInFolder", "title": "$(file-directory) Replace All in Folder", "description": "Replace all matches in the current folder", "category": "Search" },
|
|
1707
|
+
{ "command": "workbench.action.showAllSymbols", "title": "$(symbol-keyword) Show All Symbols", "description": "Show all symbols in workspace", "category": "Search" },
|
|
1708
|
+
{ "command": "workbench.action.quickTextSearch", "title": "$(search) Quick Text Search", "description": "Quick search for text in workspace", "category": "Search" },
|
|
1709
|
+
{ "command": "search.action.replaceAll", "title": "$(replace-all) Replace All", "description": "Replace all search matches", "category": "Search" },
|
|
1710
|
+
{ "command": "cleanSearchEditorState", "title": "$(clear-all) Clean Search Editor", "description": "Clear search editor state", "category": "Search" },
|
|
1711
|
+
{ "command": "search.searchEditor.action.deleteFileResults", "title": "$(trash) Delete File Results", "description": "Delete file results from search editor", "category": "Search" },
|
|
1712
|
+
{ "command": "search.action.openNewEditor", "title": "$(new-file) Open New Search Editor", "description": "Open search results in new editor", "category": "Search" },
|
|
1713
|
+
{ "command": "search.action.openEditor", "title": "$(edit) Open Search Editor", "description": "Open search in editor", "category": "Search" },
|
|
1714
|
+
{ "command": "search.action.openNewEditorToSide", "title": "$(split-horizontal) Open New Search Editor to Side", "description": "Open search results in new editor to the side", "category": "Search" },
|
|
1715
|
+
{ "command": "search.action.openInEditor", "title": "$(edit) Open in Editor", "description": "Open search result in editor", "category": "Search" },
|
|
1716
|
+
{ "command": "rerunSearchEditorSearch", "title": "$(refresh) Rerun Search Editor Search", "description": "Rerun search in search editor", "category": "Search" },
|
|
1717
|
+
{ "command": "search.action.focusQueryEditorWidget", "title": "$(edit) Focus Query Editor", "description": "Focus the search query editor widget", "category": "Search" },
|
|
1718
|
+
{ "command": "search.action.focusFilesToInclude", "title": "$(include) Focus Files to Include", "description": "Focus files to include input", "category": "Search" },
|
|
1719
|
+
{ "command": "search.action.focusFilesToExclude", "title": "$(exclude) Focus Files to Exclude", "description": "Focus files to exclude input", "category": "Search" },
|
|
1720
|
+
{ "command": "toggleSearchEditorCaseSensitive", "title": "$(case-sensitive) Toggle Case Sensitive", "description": "Toggle case sensitivity in search editor", "category": "Search" },
|
|
1721
|
+
{ "command": "toggleSearchEditorWholeWord", "title": "$(whole-word) Toggle Whole Word", "description": "Toggle whole word matching in search editor", "category": "Search" },
|
|
1722
|
+
{ "command": "toggleSearchEditorRegex", "title": "$(regex) Toggle Regex", "description": "Toggle regex search in search editor", "category": "Search" },
|
|
1723
|
+
{ "command": "toggleSearchEditorContextLines", "title": "$(context) Toggle Context Lines", "description": "Toggle context lines in search editor", "category": "Search" },
|
|
1724
|
+
{ "command": "increaseSearchEditorContextLines", "title": "$(add) Increase Context Lines", "description": "Increase number of context lines", "category": "Search" },
|
|
1725
|
+
{ "command": "decreaseSearchEditorContextLines", "title": "$(remove) Decrease Context Lines", "description": "Decrease number of context lines", "category": "Search" },
|
|
1726
|
+
{ "command": "selectAllSearchEditorMatches", "title": "$(selection) Select All Matches", "description": "Select all search matches in editor", "category": "Search" },
|
|
1727
|
+
{ "command": "search.action.openNewEditorFromView", "title": "$(new-file) Open New Editor from View", "description": "Open new search editor from view", "category": "Search" },
|
|
1728
|
+
{ "command": "closeReplaceInFilesWidget", "title": "$(close) Close Replace Widget", "description": "Close replace in files widget", "category": "Search" },
|
|
1729
|
+
{ "command": "toggleSearchCaseSensitive", "title": "$(case-sensitive) Toggle Case Sensitive", "description": "Toggle case sensitive search", "category": "Search" },
|
|
1730
|
+
{ "command": "toggleSearchWholeWord", "title": "$(whole-word) Toggle Whole Word", "description": "Toggle whole word search", "category": "Search" },
|
|
1731
|
+
{ "command": "toggleSearchRegex", "title": "$(regex) Toggle Regex", "description": "Toggle regex search", "category": "Search" },
|
|
1732
|
+
{ "command": "toggleSearchPreserveCase", "title": "$(preserve-case) Toggle Preserve Case", "description": "Toggle preserve case in replace", "category": "Search" }
|
|
1733
|
+
];
|
|
1734
|
+
|
|
1735
|
+
// Diff & Source Control Commands
|
|
1736
|
+
const diffSourceControlCommands = [
|
|
1737
|
+
{ "command": "editor.action.dirtydiff.previous", "title": "$(arrow-up) Previous Change", "description": "Go to previous change in dirty diff", "category": "Diff & Source Control" },
|
|
1738
|
+
{ "command": "editor.action.dirtydiff.next", "title": "$(arrow-down) Next Change", "description": "Go to next change in dirty diff", "category": "Diff & Source Control" },
|
|
1739
|
+
{ "command": "workbench.action.editor.previousChange", "title": "$(arrow-up) Previous Change", "description": "Go to previous change", "category": "Diff & Source Control" },
|
|
1740
|
+
{ "command": "workbench.action.editor.nextChange", "title": "$(arrow-down) Next Change", "description": "Go to next change", "category": "Diff & Source Control" },
|
|
1741
|
+
{ "command": "closeQuickDiff", "title": "$(close) Close Quick Diff", "description": "Close quick diff view", "category": "Diff & Source Control" }
|
|
1742
|
+
];
|
|
1743
|
+
|
|
1744
|
+
// Comments Commands
|
|
1745
|
+
const commentsCommands = [
|
|
1746
|
+
{ "command": "editor.action.nextCommentThreadAction", "title": "$(arrow-down) Next Comment Thread", "description": "Go to next comment thread", "category": "Comments" },
|
|
1747
|
+
{ "command": "editor.action.previousCommentThreadAction", "title": "$(arrow-up) Previous Comment Thread", "description": "Go to previous comment thread", "category": "Comments" },
|
|
1748
|
+
{ "command": "editor.action.nextCommentedRangeAction", "title": "$(arrow-down) Next Commented Range", "description": "Go to next commented range", "category": "Comments" },
|
|
1749
|
+
{ "command": "editor.action.previousCommentedRangeAction", "title": "$(arrow-up) Previous Commented Range", "description": "Go to previous commented range", "category": "Comments" },
|
|
1750
|
+
{ "command": "editor.action.nextCommentingRange", "title": "$(arrow-down) Next Commenting Range", "description": "Go to next commenting range", "category": "Comments" },
|
|
1751
|
+
{ "command": "editor.action.previousCommentingRange", "title": "$(arrow-up) Previous Commenting Range", "description": "Go to previous commenting range", "category": "Comments" },
|
|
1752
|
+
{ "command": "workbench.action.toggleCommenting", "title": "$(comment) Toggle Commenting", "description": "Toggle commenting mode", "category": "Comments" },
|
|
1753
|
+
{ "command": "workbench.action.addComment", "title": "$(add-comment) Add Comment", "description": "Add a new comment", "category": "Comments" },
|
|
1754
|
+
{ "command": "workbench.action.focusCommentOnCurrentLine", "title": "$(comment) Focus Comment", "description": "Focus comment on current line", "category": "Comments" },
|
|
1755
|
+
{ "command": "workbench.action.collapseAllComments", "title": "$(collapse-all) Collapse All Comments", "description": "Collapse all comments", "category": "Comments" },
|
|
1756
|
+
{ "command": "workbench.action.expandAllComments", "title": "$(expand-all) Expand All Comments", "description": "Expand all comments", "category": "Comments" },
|
|
1757
|
+
{ "command": "workbench.action.expandUnresolvedComments", "title": "$(expand) Expand Unresolved Comments", "description": "Expand unresolved comments", "category": "Comments" },
|
|
1758
|
+
{ "command": "editor.action.submitComment", "title": "$(check) Submit Comment", "description": "Submit current comment", "category": "Comments" },
|
|
1759
|
+
{ "command": "workbench.action.hideComment", "title": "$(eye-closed) Hide Comment", "description": "Hide comment", "category": "Comments" },
|
|
1760
|
+
{ "command": "comments.collapse", "title": "$(collapse) Collapse Comment", "description": "Collapse comment", "category": "Comments" },
|
|
1761
|
+
{ "command": "comments.expand", "title": "$(expand) Expand Comment", "description": "Expand comment", "category": "Comments" },
|
|
1762
|
+
{ "command": "comments.reply", "title": "$(reply) Reply to Comment", "description": "Reply to comment", "category": "Comments" }
|
|
1763
|
+
];
|
|
1764
|
+
|
|
1765
|
+
// Webview Commands
|
|
1766
|
+
const webviewCommands = [
|
|
1767
|
+
{ "command": "editor.action.webvieweditor.showFind", "title": "$(search) Show Find in Webview", "description": "Show find dialog in webview", "category": "Webview" },
|
|
1768
|
+
{ "command": "editor.action.webvieweditor.hideFind", "title": "$(close) Hide Find in Webview", "description": "Hide find dialog in webview", "category": "Webview" },
|
|
1769
|
+
{ "command": "editor.action.webvieweditor.findNext", "title": "$(arrow-down) Find Next in Webview", "description": "Find next in webview", "category": "Webview" },
|
|
1770
|
+
{ "command": "editor.action.webvieweditor.findPrevious", "title": "$(arrow-up) Find Previous in Webview", "description": "Find previous in webview", "category": "Webview" }
|
|
1771
|
+
];
|
|
1772
|
+
|
|
1773
|
+
|
|
1774
|
+
|
|
1775
|
+
|
|
1776
|
+
// Terminal (Workbench/Extension)
|
|
1777
|
+
const terminalCommands = [
|
|
1778
|
+
{ "command": "workbench.action.terminal.newInActiveWorkspace", "title": "New Terminal in Active Workspace", "description": "Create new terminal in active workspace", "category": "Terminal" },
|
|
1779
|
+
{ "command": "openInTerminal", "title": "$(terminal) Open in Terminal", "description": "Open current file/folder in terminal", "category": "Terminal" },
|
|
1780
|
+
{ "command": "openInIntegratedTerminal", "title": "$(terminal) Open in Integrated Terminal", "description": "Open in integrated terminal", "category": "Terminal" },
|
|
1781
|
+
{ "command": "workbench.action.createTerminalEditor", "title": "Create Terminal Editor", "description": "Create terminal as editor", "category": "Terminal" },
|
|
1782
|
+
{ "command": "workbench.action.createTerminalEditorSameGroup", "title": "Create Terminal Editor Same Group", "description": "Create terminal editor in same group", "category": "Terminal" },
|
|
1783
|
+
{ "command": "workbench.action.createTerminalEditorSide", "title": "Create Terminal Editor Side", "description": "Create terminal editor to the side", "category": "Terminal" },
|
|
1784
|
+
{ "command": "workbench.action.terminal.newInNewWindow", "title": "New Terminal in New Window", "description": "Create terminal in new window", "category": "Terminal" },
|
|
1785
|
+
{ "command": "workbench.action.terminal.moveToEditor", "title": "Move Terminal to Editor", "description": "Move terminal to editor area", "category": "Terminal" },
|
|
1786
|
+
{ "command": "workbench.action.terminal.moveIntoNewWindow", "title": "Move Terminal into New Window", "description": "Move terminal to new window", "category": "Terminal" },
|
|
1787
|
+
{ "command": "workbench.action.terminal.moveToTerminalPanel", "title": "Move Terminal to Panel", "description": "Move terminal to terminal panel", "category": "Terminal" },
|
|
1788
|
+
{ "command": "workbench.action.terminal.focusPreviousPane", "title": "Focus Previous Pane", "description": "Focus previous terminal pane", "category": "Terminal" },
|
|
1789
|
+
{ "command": "workbench.action.terminal.focusNextPane", "title": "Focus Next Pane", "description": "Focus next terminal pane", "category": "Terminal" },
|
|
1790
|
+
{ "command": "workbench.action.terminal.resizePaneLeft", "title": "Resize Pane Left", "description": "Resize terminal pane left", "category": "Terminal" },
|
|
1791
|
+
{ "command": "workbench.action.terminal.resizePaneRight", "title": "Resize Pane Right", "description": "Resize terminal pane right", "category": "Terminal" },
|
|
1792
|
+
{ "command": "workbench.action.terminal.resizePaneUp", "title": "Resize Pane Up", "description": "Resize terminal pane up", "category": "Terminal" },
|
|
1793
|
+
{ "command": "workbench.action.terminal.resizePaneDown", "title": "Resize Pane Down", "description": "Resize terminal pane down", "category": "Terminal" },
|
|
1794
|
+
{ "command": "workbench.action.terminal.focus", "title": "Focus Terminal", "description": "Focus terminal", "category": "Terminal" },
|
|
1795
|
+
{ "command": "workbench.action.terminal.focusTabs", "title": "Focus Terminal Tabs", "description": "Focus terminal tabs", "category": "Terminal" },
|
|
1796
|
+
{ "command": "workbench.action.terminal.focusNext", "title": "Focus Next Terminal", "description": "Focus next terminal", "category": "Terminal" },
|
|
1797
|
+
{ "command": "workbench.action.terminal.focusPrevious", "title": "Focus Previous Terminal", "description": "Focus previous terminal", "category": "Terminal" },
|
|
1798
|
+
{ "command": "workbench.action.terminal.runSelectedText", "title": "Run Selected Text", "description": "Run selected text in terminal", "category": "Terminal" },
|
|
1799
|
+
{ "command": "workbench.action.terminal.runActiveFile", "title": "Run Active File", "description": "Run active file in terminal", "category": "Terminal" },
|
|
1800
|
+
{ "command": "workbench.action.terminal.scrollDown", "title": "Scroll Down", "description": "Scroll terminal down", "category": "Terminal" },
|
|
1801
|
+
{ "command": "workbench.action.terminal.scrollDownPage", "title": "Scroll Down Page", "description": "Scroll terminal down one page", "category": "Terminal" },
|
|
1802
|
+
{ "command": "workbench.action.terminal.scrollToBottom", "title": "Scroll to Bottom", "description": "Scroll terminal to bottom", "category": "Terminal" },
|
|
1803
|
+
{ "command": "workbench.action.terminal.scrollUp", "title": "Scroll Up", "description": "Scroll terminal up", "category": "Terminal" },
|
|
1804
|
+
{ "command": "workbench.action.terminal.scrollUpPage", "title": "Scroll Up Page", "description": "Scroll terminal up one page", "category": "Terminal" },
|
|
1805
|
+
{ "command": "workbench.action.terminal.scrollToTop", "title": "Scroll to Top", "description": "Scroll terminal to top", "category": "Terminal" },
|
|
1806
|
+
{ "command": "workbench.action.terminal.clearSelection", "title": "Clear Selection", "description": "Clear terminal selection", "category": "Terminal" },
|
|
1807
|
+
{ "command": "workbench.action.terminal.changeIcon", "title": "Change Terminal Icon", "description": "Change terminal icon", "category": "Terminal" },
|
|
1808
|
+
{ "command": "workbench.action.terminal.changeIconActiveTab", "title": "Change Active Tab Icon", "description": "Change active terminal tab icon", "category": "Terminal" },
|
|
1809
|
+
{ "command": "workbench.action.terminal.changeColor", "title": "Change Terminal Color", "description": "Change terminal color", "category": "Terminal" },
|
|
1810
|
+
{ "command": "workbench.action.terminal.changeColorActiveTab", "title": "Change Active Tab Color", "description": "Change active terminal tab color", "category": "Terminal" },
|
|
1811
|
+
{ "command": "workbench.action.terminal.rename", "title": "Rename Terminal", "description": "Rename terminal", "category": "Terminal" },
|
|
1812
|
+
{ "command": "workbench.action.terminal.renameActiveTab", "title": "Rename Active Tab", "description": "Rename active terminal tab", "category": "Terminal" },
|
|
1813
|
+
{ "command": "workbench.action.terminal.detachSession", "title": "Detach Session", "description": "Detach terminal session", "category": "Terminal" },
|
|
1814
|
+
{ "command": "workbench.action.terminal.attachToSession", "title": "Attach to Session", "description": "Attach to terminal session", "category": "Terminal" },
|
|
1815
|
+
{ "command": "workbench.action.terminal.scrollToPreviousCommand", "title": "Scroll to Previous Command", "description": "Scroll to previous command", "category": "Terminal" },
|
|
1816
|
+
{ "command": "workbench.action.terminal.scrollToNextCommand", "title": "Scroll to Next Command", "description": "Scroll to next command", "category": "Terminal" },
|
|
1817
|
+
{ "command": "workbench.action.terminal.selectToPreviousCommand", "title": "Select to Previous Command", "description": "Select text to previous command", "category": "Terminal" },
|
|
1818
|
+
{ "command": "workbench.action.terminal.selectToNextCommand", "title": "Select to Next Command", "description": "Select text to next command", "category": "Terminal" },
|
|
1819
|
+
{ "command": "workbench.action.terminal.selectToPreviousLine", "title": "Select to Previous Line", "description": "Select text to previous line", "category": "Terminal" },
|
|
1820
|
+
{ "command": "workbench.action.terminal.selectToNextLine", "title": "Select to Next Line", "description": "Select text to next line", "category": "Terminal" },
|
|
1821
|
+
{ "command": "workbench.action.terminal.newWithCwd", "title": "New Terminal with CWD", "description": "Create terminal with specific working directory", "category": "Terminal" },
|
|
1822
|
+
{ "command": "workbench.action.terminal.renameWithArg", "title": "Rename Terminal with Argument", "description": "Rename terminal with argument", "category": "Terminal" },
|
|
1823
|
+
{ "command": "workbench.action.terminal.relaunch", "title": "Relaunch Terminal", "description": "Relaunch terminal", "category": "Terminal" },
|
|
1824
|
+
{ "command": "workbench.action.terminal.split", "title": "Split Terminal", "description": "Split terminal", "category": "Terminal" },
|
|
1825
|
+
{ "command": "workbench.action.terminal.splitActiveTab", "title": "Split Active Tab", "description": "Split active terminal tab", "category": "Terminal" },
|
|
1826
|
+
{ "command": "workbench.action.terminal.unsplit", "title": "Unsplit Terminal", "description": "Unsplit terminal", "category": "Terminal" },
|
|
1827
|
+
{ "command": "workbench.action.terminal.joinActiveTab", "title": "Join Active Tab", "description": "Join active terminal tab", "category": "Terminal" },
|
|
1828
|
+
{ "command": "workbench.action.terminal.join", "title": "Join Terminal", "description": "Join terminal", "category": "Terminal" },
|
|
1829
|
+
{ "command": "workbench.action.terminal.splitInActiveWorkspace", "title": "Split in Active Workspace", "description": "Split terminal in active workspace", "category": "Terminal" },
|
|
1830
|
+
{ "command": "workbench.action.terminal.selectAll", "title": "Select All", "description": "Select all text in terminal", "category": "Terminal" },
|
|
1831
|
+
{ "command": "workbench.action.terminal.new", "title": "New Terminal", "description": "Create new terminal", "category": "Terminal" },
|
|
1832
|
+
{ "command": "workbench.action.terminal.kill", "title": "Kill Terminal", "description": "Kill terminal", "category": "Terminal" },
|
|
1833
|
+
{ "command": "workbench.action.terminal.killViewOrEditor", "title": "Kill Terminal View or Editor", "description": "Kill terminal view or editor", "category": "Terminal" },
|
|
1834
|
+
{ "command": "workbench.action.terminal.killAll", "title": "Kill All Terminals", "description": "Kill all terminals", "category": "Terminal" },
|
|
1835
|
+
{ "command": "workbench.action.terminal.killEditor", "title": "Kill Terminal Editor", "description": "Kill terminal editor", "category": "Terminal" },
|
|
1836
|
+
{ "command": "workbench.action.terminal.killActiveTab", "title": "Kill Active Tab", "description": "Kill active terminal tab", "category": "Terminal" },
|
|
1837
|
+
{ "command": "workbench.action.terminal.focusHover", "title": "Focus Terminal Hover", "description": "Focus terminal hover", "category": "Terminal" },
|
|
1838
|
+
{ "command": "workbench.action.terminal.clear", "title": "Clear Terminal", "description": "Clear terminal", "category": "Terminal" },
|
|
1839
|
+
{ "command": "workbench.action.terminal.selectDefaultShell", "title": "Select Default Shell", "description": "Select default shell", "category": "Terminal" },
|
|
1840
|
+
{ "command": "workbench.action.terminal.openSettings", "title": "Open Terminal Settings", "description": "Open terminal settings", "category": "Terminal" },
|
|
1841
|
+
{ "command": "workbench.action.terminal.setDimensions", "title": "Set Terminal Dimensions", "description": "Set terminal dimensions", "category": "Terminal" },
|
|
1842
|
+
{ "command": "workbench.action.terminal.sizeToContentWidth", "title": "Size to Content Width", "description": "Resize terminal to content width", "category": "Terminal" },
|
|
1843
|
+
{ "command": "workbench.action.terminal.switchTerminal", "title": "Switch Terminal", "description": "Switch between terminals", "category": "Terminal" },
|
|
1844
|
+
{ "command": "workbench.action.terminal.focusAtIndex1", "title": "Focus Terminal at Index 1", "description": "Focus terminal at index 1", "category": "Terminal" },
|
|
1845
|
+
{ "command": "workbench.action.terminal.focusAtIndex2", "title": "Focus Terminal at Index 2", "description": "Focus terminal at index 2", "category": "Terminal" },
|
|
1846
|
+
{ "command": "workbench.action.terminal.focusAtIndex3", "title": "Focus Terminal at Index 3", "description": "Focus terminal at index 3", "category": "Terminal" },
|
|
1847
|
+
{ "command": "workbench.action.terminal.focusAtIndex4", "title": "Focus Terminal at Index 4", "description": "Focus terminal at index 4", "category": "Terminal" },
|
|
1848
|
+
{ "command": "workbench.action.terminal.focusAtIndex5", "title": "Focus Terminal at Index 5", "description": "Focus terminal at index 5", "category": "Terminal" },
|
|
1849
|
+
{ "command": "workbench.action.terminal.focusAtIndex6", "title": "Focus Terminal at Index 6", "description": "Focus terminal at index 6", "category": "Terminal" },
|
|
1850
|
+
{ "command": "workbench.action.terminal.focusAtIndex7", "title": "Focus Terminal at Index 7", "description": "Focus terminal at index 7", "category": "Terminal" },
|
|
1851
|
+
{ "command": "workbench.action.terminal.focusAtIndex8", "title": "Focus Terminal at Index 8", "description": "Focus terminal at index 8", "category": "Terminal" },
|
|
1852
|
+
{ "command": "workbench.action.terminal.focusAtIndex9", "title": "Focus Terminal at Index 9", "description": "Focus terminal at index 9", "category": "Terminal" },
|
|
1853
|
+
{ "command": "workbench.action.terminal.focusAccessibleBuffer", "title": "Focus Accessible Buffer", "description": "Focus terminal accessible buffer", "category": "Terminal" },
|
|
1854
|
+
{ "command": "workbench.action.terminal.accessibleBufferGoToNextCommand", "title": "Accessible Buffer Next Command", "description": "Go to next command in accessible buffer", "category": "Terminal" },
|
|
1855
|
+
{ "command": "workbench.action.terminal.accessibleBufferGoToPreviousCommand", "title": "Accessible Buffer Previous Command", "description": "Go to previous command in accessible buffer", "category": "Terminal" },
|
|
1856
|
+
{ "command": "workbench.action.terminal.scrollToBottomAccessibleView", "title": "Scroll to Bottom Accessible View", "description": "Scroll to bottom in accessible view", "category": "Terminal" },
|
|
1857
|
+
{ "command": "workbench.action.terminal.scrollToTopAccessibleView", "title": "Scroll to Top Accessible View", "description": "Scroll to top in accessible view", "category": "Terminal" },
|
|
1858
|
+
{ "command": "workbench.action.terminal.chat.addTerminalSelection", "title": "Add Terminal Selection to Chat", "description": "Add terminal selection to chat", "category": "Terminal" },
|
|
1859
|
+
{ "command": "workbench.action.terminal.showTextureAtlas", "title": "Show Texture Atlas", "description": "Show terminal texture atlas", "category": "Terminal" },
|
|
1860
|
+
{ "command": "workbench.action.terminal.writeDataToTerminal", "title": "Write Data to Terminal", "description": "Write data to terminal", "category": "Terminal" },
|
|
1861
|
+
{ "command": "workbench.action.terminal.recordSession", "title": "Record Terminal Session", "description": "Record terminal session", "category": "Terminal" },
|
|
1862
|
+
{ "command": "workbench.action.terminal.restartPtyHost", "title": "Restart PTY Host", "description": "Restart PTY host", "category": "Terminal" },
|
|
1863
|
+
{ "command": "workbench.action.terminal.showEnvironmentContributions", "title": "Show Environment Contributions", "description": "Show terminal environment contributions", "category": "Terminal" },
|
|
1864
|
+
{ "command": "workbench.action.terminal.copyLastCommand", "title": "Copy Last Command", "description": "Copy last terminal command", "category": "Terminal" },
|
|
1865
|
+
{ "command": "workbench.action.terminal.copyLastCommandOutput", "title": "Copy Last Command Output", "description": "Copy last command output", "category": "Terminal" },
|
|
1866
|
+
{ "command": "workbench.action.terminal.copyLastCommandAndLastCommandOutput", "title": "Copy Last Command and Output", "description": "Copy last command and its output", "category": "Terminal" },
|
|
1867
|
+
{ "command": "workbench.action.terminal.copySelection", "title": "Copy Selection", "description": "Copy terminal selection", "category": "Terminal" },
|
|
1868
|
+
{ "command": "workbench.action.terminal.copyAndClearSelection", "title": "Copy and Clear Selection", "description": "Copy and clear terminal selection", "category": "Terminal" },
|
|
1869
|
+
{ "command": "workbench.action.terminal.copySelectionAsHtml", "title": "Copy Selection as HTML", "description": "Copy terminal selection as HTML", "category": "Terminal" },
|
|
1870
|
+
{ "command": "workbench.action.terminal.paste", "title": "Paste in Terminal", "description": "Paste in terminal", "category": "Terminal" },
|
|
1871
|
+
{ "command": "workbench.action.terminal.focusFind", "title": "Focus Terminal Find", "description": "Focus terminal find", "category": "Terminal" },
|
|
1872
|
+
{ "command": "workbench.action.terminal.hideFind", "title": "Hide Terminal Find", "description": "Hide terminal find", "category": "Terminal" },
|
|
1873
|
+
{ "command": "workbench.action.terminal.toggleFindRegex", "title": "Toggle Find Regex", "description": "Toggle regex in terminal find", "category": "Terminal" },
|
|
1874
|
+
{ "command": "workbench.action.terminal.toggleFindWholeWord", "title": "Toggle Find Whole Word", "description": "Toggle whole word in terminal find", "category": "Terminal" },
|
|
1875
|
+
{ "command": "workbench.action.terminal.toggleFindCaseSensitive", "title": "Toggle Find Case Sensitive", "description": "Toggle case sensitivity in terminal find", "category": "Terminal" },
|
|
1876
|
+
{ "command": "workbench.action.terminal.findNext", "title": "Find Next", "description": "Find next in terminal", "category": "Terminal" },
|
|
1877
|
+
{ "command": "workbench.action.terminal.findPrevious", "title": "Find Previous", "description": "Find previous in terminal", "category": "Terminal" },
|
|
1878
|
+
{ "command": "workbench.action.terminal.searchWorkspace", "title": "Search Workspace", "description": "Search workspace from terminal", "category": "Terminal" },
|
|
1879
|
+
{ "command": "workbench.action.terminal.chat.start", "title": "Start Terminal Chat", "description": "Start terminal chat", "category": "Terminal" },
|
|
1880
|
+
{ "command": "workbench.action.terminal.chat.close", "title": "Close Terminal Chat", "description": "Close terminal chat", "category": "Terminal" },
|
|
1881
|
+
{ "command": "workbench.action.terminal.chat.runCommand", "title": "Run Terminal Chat Command", "description": "Run terminal chat command", "category": "Terminal" },
|
|
1882
|
+
{ "command": "workbench.action.terminal.chat.runFirstCommand", "title": "Run First Terminal Chat Command", "description": "Run first terminal chat command", "category": "Terminal" },
|
|
1883
|
+
{ "command": "workbench.action.terminal.chat.insertCommand", "title": "Insert Terminal Chat Command", "description": "Insert terminal chat command", "category": "Terminal" },
|
|
1884
|
+
{ "command": "workbench.action.terminal.chat.insertFirstCommand", "title": "Insert First Terminal Chat Command", "description": "Insert first terminal chat command", "category": "Terminal" },
|
|
1885
|
+
{ "command": "workbench.action.terminal.chat.rerunRequest", "title": "Rerun Terminal Chat Request", "description": "Rerun terminal chat request", "category": "Terminal" },
|
|
1886
|
+
{ "command": "workbench.action.terminal.chat.viewInChat", "title": "View in Chat", "description": "View terminal content in chat", "category": "Terminal" },
|
|
1887
|
+
{ "command": "workbench.action.terminal.chat.viewHiddenChatTerminals", "title": "View Hidden Chat Terminals", "description": "View hidden chat terminals", "category": "Terminal" },
|
|
1888
|
+
{ "command": "workbench.action.terminal.chat.focusMostRecentChatTerminal", "title": "Focus Most Recent Chat Terminal", "description": "Focus most recent chat terminal", "category": "Terminal" },
|
|
1889
|
+
{ "command": "workbench.action.terminal.chat.focusMostRecentChatTerminalOutput", "title": "Focus Most Recent Chat Terminal Output", "description": "Focus most recent chat terminal output", "category": "Terminal" },
|
|
1890
|
+
{ "command": "workbench.action.terminal.chat.openTerminalSettingsLink", "title": "Open Terminal Settings Link", "description": "Open terminal settings link", "category": "Terminal" },
|
|
1891
|
+
{ "command": "workbench.action.terminal.chat.disableSessionAutoApproval", "title": "Disable Session Auto-Approval", "description": "Disable session auto-approval", "category": "Terminal" },
|
|
1892
|
+
{ "command": "workbench.action.terminal.clearPreviousSessionHistory", "title": "Clear Previous Session History", "description": "Clear previous session history", "category": "Terminal" },
|
|
1893
|
+
{ "command": "workbench.action.terminal.goToRecentDirectory", "title": "Go to Recent Directory", "description": "Go to recent directory", "category": "Terminal" },
|
|
1894
|
+
{ "command": "workbench.action.terminal.runRecentCommand", "title": "Run Recent Command", "description": "Run recent command", "category": "Terminal" },
|
|
1895
|
+
{ "command": "workbench.action.terminal.openDetectedLink", "title": "Open Detected Link", "description": "Open detected link in terminal", "category": "Terminal" },
|
|
1896
|
+
{ "command": "workbench.action.terminal.openUrlLink", "title": "Open URL Link", "description": "Open URL link from terminal", "category": "Terminal" },
|
|
1897
|
+
{ "command": "workbench.action.terminal.openFileLink", "title": "Open File Link", "description": "Open file link from terminal", "category": "Terminal" },
|
|
1898
|
+
{ "command": "workbench.action.terminal.fontZoomIn", "title": "Font Zoom In", "description": "Increase terminal font size", "category": "Terminal" },
|
|
1899
|
+
{ "command": "workbench.action.terminal.fontZoomOut", "title": "Font Zoom Out", "description": "Decrease terminal font size", "category": "Terminal" },
|
|
1900
|
+
{ "command": "workbench.action.terminal.fontZoomReset", "title": "Font Zoom Reset", "description": "Reset terminal font size", "category": "Terminal" },
|
|
1901
|
+
{ "command": "workbench.action.terminal.toggleStickyScroll", "title": "Toggle Sticky Scroll", "description": "Toggle sticky scroll in terminal", "category": "Terminal" },
|
|
1902
|
+
{ "command": "workbench.action.quickOpenNavigateNextInTerminalPicker", "title": "Quick Open Next in Terminal Picker", "description": "Navigate next in terminal quick picker", "category": "Terminal" },
|
|
1903
|
+
{ "command": "workbench.action.quickOpenNavigatePreviousInTerminalPicker", "title": "Quick Open Previous in Terminal Picker", "description": "Navigate previous in terminal quick picker", "category": "Terminal" },
|
|
1904
|
+
{ "command": "workbench.action.quickOpenTerm", "title": "Quick Open Terminal", "description": "Quick open terminal", "category": "Terminal" },
|
|
1905
|
+
{ "command": "workbench.action.terminal.showQuickFixes", "title": "Show Terminal Quick Fixes", "description": "Show terminal quick fixes", "category": "Terminal" },
|
|
1906
|
+
{ "command": "workbench.action.terminal.sendSequence", "title": "Send Sequence to Terminal", "description": "Send sequence to terminal", "category": "Terminal" },
|
|
1907
|
+
{ "command": "workbench.action.terminal.sendSignal", "title": "Send Signal to Terminal", "description": "Send signal to terminal", "category": "Terminal" },
|
|
1908
|
+
{ "command": "workbench.action.terminal.configureSuggestSettings", "title": "Configure Suggest Settings", "description": "Configure terminal suggest settings", "category": "Terminal" },
|
|
1909
|
+
{ "command": "workbench.action.terminal.suggestLearnMore", "title": "Suggest Learn More", "description": "Learn more about terminal suggestions", "category": "Terminal" },
|
|
1910
|
+
{ "command": "workbench.action.terminal.triggerSuggest", "title": "Trigger Terminal Suggest", "description": "Trigger terminal suggestions", "category": "Terminal" },
|
|
1911
|
+
{ "command": "workbench.action.terminal.resetSuggestWidgetSize", "title": "Reset Suggest Widget Size", "description": "Reset terminal suggest widget size", "category": "Terminal" },
|
|
1912
|
+
{ "command": "workbench.action.terminal.selectPrevSuggestion", "title": "Select Previous Suggestion", "description": "Select previous terminal suggestion", "category": "Terminal" },
|
|
1913
|
+
{ "command": "workbench.action.terminal.selectPrevPageSuggestion", "title": "Select Previous Page Suggestion", "description": "Select previous page of suggestions", "category": "Terminal" },
|
|
1914
|
+
{ "command": "workbench.action.terminal.selectNextSuggestion", "title": "Select Next Suggestion", "description": "Select next terminal suggestion", "category": "Terminal" },
|
|
1915
|
+
{ "command": "terminalSuggestToggleExplainMode", "title": "Toggle Explain Mode", "description": "Toggle explain mode for suggestions", "category": "Terminal" },
|
|
1916
|
+
{ "command": "workbench.action.terminal.suggestToggleDetailsFocus", "title": "Toggle Details Focus", "description": "Toggle focus on suggestion details", "category": "Terminal" },
|
|
1917
|
+
{ "command": "workbench.action.terminal.suggestToggleDetails", "title": "Toggle Details", "description": "Toggle suggestion details", "category": "Terminal" },
|
|
1918
|
+
{ "command": "workbench.action.terminal.selectNextPageSuggestion", "title": "Select Next Page Suggestion", "description": "Select next page of suggestions", "category": "Terminal" },
|
|
1919
|
+
{ "command": "workbench.action.terminal.acceptSelectedSuggestion", "title": "Accept Selected Suggestion", "description": "Accept selected terminal suggestion", "category": "Terminal" },
|
|
1920
|
+
{ "command": "workbench.action.terminal.acceptSelectedSuggestionEnter", "title": "Accept Selected Suggestion Enter", "description": "Accept suggestion with Enter", "category": "Terminal" },
|
|
1921
|
+
{ "command": "workbench.action.terminal.hideSuggestWidget", "title": "Hide Suggest Widget", "description": "Hide terminal suggest widget", "category": "Terminal" },
|
|
1922
|
+
{ "command": "workbench.action.terminal.hideSuggestWidgetAndNavigateHistory", "title": "Hide Suggest Widget and Navigate History", "description": "Hide suggest widget and navigate history", "category": "Terminal" },
|
|
1923
|
+
{ "command": "workbench.action.terminal.startVoice", "title": "Start Terminal Voice", "description": "Start terminal voice feature", "category": "Terminal" },
|
|
1924
|
+
{ "command": "workbench.action.terminal.stopVoice", "title": "Stop Terminal Voice", "description": "Stop terminal voice feature", "category": "Terminal" }
|
|
1925
|
+
];
|
|
1926
|
+
|
|
1927
|
+
// Editor Settings & Toggles
|
|
1928
|
+
const editorSettingsCommands = [
|
|
1929
|
+
{ "command": "editor.action.toggleScreenReaderAccessibilityMode", "title": "$(screen-reader) Toggle Screen Reader Mode", "description": "Toggle screen reader accessibility mode", "category": "Editor Settings" },
|
|
1930
|
+
{ "command": "editor.action.formatChanges", "title": "$(format) Format Changes", "description": "Format changed code", "category": "Editor Settings" },
|
|
1931
|
+
{ "command": "editor.action.toggleColumnSelection", "title": "$(column-select) Toggle Column Selection", "description": "Toggle column/block selection mode", "category": "Editor Settings" },
|
|
1932
|
+
{ "command": "editor.action.toggleMinimap", "title": "$(map) Toggle Minimap", "description": "Toggle minimap visibility", "category": "Editor Settings" },
|
|
1933
|
+
{ "command": "editor.action.toggleOvertypeInsertMode", "title": "$(type) Toggle Overtype/Insert", "description": "Toggle between overtype and insert mode", "category": "Editor Settings" },
|
|
1934
|
+
{ "command": "editor.action.toggleRenderControlCharacter", "title": "$(control) Toggle Control Characters", "description": "Toggle control character rendering", "category": "Editor Settings" },
|
|
1935
|
+
{ "command": "editor.action.toggleRenderWhitespace", "title": "$(space) Toggle Whitespace", "description": "Toggle whitespace rendering", "category": "Editor Settings" },
|
|
1936
|
+
{ "command": "editor.action.insertSnippet", "title": "$(snippet) Insert Snippet", "description": "Insert code snippet", "category": "Editor Settings" },
|
|
1937
|
+
{ "command": "editor.action.showSnippets", "title": "$(list-unordered) Show Snippets", "description": "Show available snippets", "category": "Editor Settings" },
|
|
1938
|
+
{ "command": "editor.action.surroundWithSnippet", "title": "$(bracket) Surround with Snippet", "description": "Surround selection with snippet", "category": "Editor Settings" }
|
|
1939
|
+
];
|
|
1940
|
+
|
|
1941
|
+
// Language Features
|
|
1942
|
+
const languageFeaturesCommands = [
|
|
1943
|
+
{ "command": "editor.detectLanguage", "title": "$(file-code) Detect Language", "description": "Detect file language", "category": "Language Features" },
|
|
1944
|
+
{ "command": "editor.inlayHints.Reset", "title": "$(refresh) Reset Inlay Hints", "description": "Reset inlay hints", "category": "Language Features" },
|
|
1945
|
+
{ "command": "inlayHints.startReadingLineWithHint", "title": "$(play) Start Reading Line with Hint", "description": "Start reading line with inlay hint", "category": "Language Features" },
|
|
1946
|
+
{ "command": "inlayHints.stopReadingLineWithHint", "title": "$(stop) Stop Reading Line with Hint", "description": "Stop reading line with inlay hint", "category": "Language Features" }
|
|
1947
|
+
];
|
|
1948
|
+
|
|
1949
|
+
// Hierarchy & Navigation
|
|
1950
|
+
const hierarchyNavigationCommands = [
|
|
1951
|
+
{ "command": "editor.showCallHierarchy", "title": "$(call-incoming) Show Call Hierarchy", "description": "Show call hierarchy for symbol", "category": "Hierarchy & Navigation" },
|
|
1952
|
+
{ "command": "editor.showIncomingCalls", "title": "$(arrow-left) Show Incoming Calls", "description": "Show incoming calls", "category": "Hierarchy & Navigation" },
|
|
1953
|
+
{ "command": "editor.showOutgoingCalls", "title": "$(arrow-right) Show Outgoing Calls", "description": "Show outgoing calls", "category": "Hierarchy & Navigation" },
|
|
1954
|
+
{ "command": "editor.refocusCallHierarchy", "title": "$(focus) Refocus Call Hierarchy", "description": "Refocus call hierarchy view", "category": "Hierarchy & Navigation" },
|
|
1955
|
+
{ "command": "editor.closeCallHierarchy", "title": "$(close) Close Call Hierarchy", "description": "Close call hierarchy view", "category": "Hierarchy & Navigation" },
|
|
1956
|
+
{ "command": "editor.showTypeHierarchy", "title": "$(type-hierarchy) Show Type Hierarchy", "description": "Show type hierarchy for symbol", "category": "Hierarchy & Navigation" },
|
|
1957
|
+
{ "command": "editor.showSupertypes", "title": "$(arrow-up) Show Supertypes", "description": "Show supertypes", "category": "Hierarchy & Navigation" },
|
|
1958
|
+
{ "command": "editor.showSubtypes", "title": "$(arrow-down) Show Subtypes", "description": "Show subtypes", "category": "Hierarchy & Navigation" },
|
|
1959
|
+
{ "command": "editor.refocusTypeHierarchy", "title": "$(focus) Refocus Type Hierarchy", "description": "Refocus type hierarchy view", "category": "Hierarchy & Navigation" },
|
|
1960
|
+
{ "command": "editor.closeTypeHierarchy", "title": "$(close) Close Type Hierarchy", "description": "Close type hierarchy view", "category": "Hierarchy & Navigation" }
|
|
1961
|
+
];
|
|
1962
|
+
|
|
1963
|
+
// Outline View
|
|
1964
|
+
const outlineViewCommands = [
|
|
1965
|
+
{ "command": "outline.collapse", "title": "$(collapse-all) Collapse Outline", "description": "Collapse outline view", "category": "Outline" },
|
|
1966
|
+
{ "command": "outline.expand", "title": "$(expand-all) Expand Outline", "description": "Expand outline view", "category": "Outline" },
|
|
1967
|
+
{ "command": "outline.followCursor", "title": "$(follow) Follow Cursor in Outline", "description": "Follow cursor position in outline", "category": "Outline" },
|
|
1968
|
+
{ "command": "outline.filterOnType", "title": "$(filter) Filter Outline", "description": "Filter outline as you type", "category": "Outline" },
|
|
1969
|
+
{ "command": "outline.sortByPosition", "title": "$(sort) Sort by Position", "description": "Sort outline by position", "category": "Outline" },
|
|
1970
|
+
{ "command": "outline.sortByName", "title": "$(sort-alpha) Sort by Name", "description": "Sort outline by name", "category": "Outline" },
|
|
1971
|
+
{ "command": "outline.sortByKind", "title": "$(symbol) Sort by Kind", "description": "Sort outline by symbol kind", "category": "Outline" }
|
|
1972
|
+
];
|
|
1973
|
+
|
|
1974
|
+
// Emmet Commands
|
|
1975
|
+
const emmetCommands = [
|
|
1976
|
+
{ "command": "editor.emmet.action.expandAbbreviation", "title": "$(expand) Expand Abbreviation", "description": "Expand Emmet abbreviation", "category": "Emmet" },
|
|
1977
|
+
{ "command": "editor.emmet.action.updateImageSize", "title": "$(image) Update Image Size", "description": "Update image size with Emmet", "category": "Emmet" },
|
|
1978
|
+
{ "command": "editor.emmet.action.wrapWithAbbreviation", "title": "$(wrap) Wrap with Abbreviation", "description": "Wrap selection with Emmet abbreviation", "category": "Emmet" },
|
|
1979
|
+
{ "command": "emmet.expandAbbreviation", "title": "$(expand) Expand Abbreviation", "description": "Expand Emmet abbreviation", "category": "Emmet" },
|
|
1980
|
+
{ "command": "editor.emmet.action.removeTag", "title": "$(remove) Remove Tag", "description": "Remove HTML tag", "category": "Emmet" },
|
|
1981
|
+
{ "command": "editor.emmet.action.updateTag", "title": "$(refresh) Update Tag", "description": "Update HTML tag", "category": "Emmet" },
|
|
1982
|
+
{ "command": "editor.emmet.action.matchTag", "title": "$(match) Match Tag", "description": "Match HTML tag", "category": "Emmet" },
|
|
1983
|
+
{ "command": "editor.emmet.action.balanceOut", "title": "$(arrow-outward) Balance Outward", "description": "Balance selection outward", "category": "Emmet" },
|
|
1984
|
+
{ "command": "editor.emmet.action.balanceIn", "title": "$(arrow-inward) Balance Inward", "description": "Balance selection inward", "category": "Emmet" },
|
|
1985
|
+
{ "command": "editor.emmet.action.splitJoinTag", "title": "$(split) Split/Join Tag", "description": "Split or join HTML tag", "category": "Emmet" },
|
|
1986
|
+
{ "command": "editor.emmet.action.mergeLines", "title": "$(combine) Merge Lines", "description": "Merge selected lines", "category": "Emmet" },
|
|
1987
|
+
{ "command": "editor.emmet.action.toggleComment", "title": "$(comment) Toggle Comment", "description": "Toggle HTML comment", "category": "Emmet" },
|
|
1988
|
+
{ "command": "editor.emmet.action.nextEditPoint", "title": "$(arrow-right) Next Edit Point", "description": "Go to next edit point", "category": "Emmet" },
|
|
1989
|
+
{ "command": "editor.emmet.action.prevEditPoint", "title": "$(arrow-left) Previous Edit Point", "description": "Go to previous edit point", "category": "Emmet" },
|
|
1990
|
+
{ "command": "editor.emmet.action.selectNextItem", "title": "$(arrow-right) Select Next Item", "description": "Select next item", "category": "Emmet" },
|
|
1991
|
+
{ "command": "editor.emmet.action.selectPrevItem", "title": "$(arrow-left) Select Previous Item", "description": "Select previous item", "category": "Emmet" },
|
|
1992
|
+
{ "command": "editor.emmet.action.evaluateMathExpression", "title": "$(calculator) Evaluate Math", "description": "Evaluate math expression", "category": "Emmet" },
|
|
1993
|
+
{ "command": "editor.emmet.action.incrementNumberByOneTenth", "title": "$(plus) Increment by 0.1", "description": "Increment number by 0.1", "category": "Emmet" },
|
|
1994
|
+
{ "command": "editor.emmet.action.incrementNumberByOne", "title": "$(plus) Increment by 1", "description": "Increment number by 1", "category": "Emmet" },
|
|
1995
|
+
{ "command": "editor.emmet.action.incrementNumberByTen", "title": "$(plus) Increment by 10", "description": "Increment number by 10", "category": "Emmet" },
|
|
1996
|
+
{ "command": "editor.emmet.action.decrementNumberByOneTenth", "title": "$(dash) Decrement by 0.1", "description": "Decrement number by 0.1", "category": "Emmet" },
|
|
1997
|
+
{ "command": "editor.emmet.action.decrementNumberByOne", "title": "$(dash) Decrement by 1", "description": "Decrement number by 1", "category": "Emmet" },
|
|
1998
|
+
{ "command": "editor.emmet.action.decrementNumberByTen", "title": "$(dash) Decrement by 10", "description": "Decrement number by 10", "category": "Emmet" },
|
|
1999
|
+
{ "command": "editor.emmet.action.reflectCSSValue", "title": "$(mirror) Reflect CSS Value", "description": "Reflect CSS value", "category": "Emmet" },
|
|
2000
|
+
{ "command": "workbench.action.showEmmetCommands", "title": "$(list-unordered) Show Emmet Commands", "description": "Show all Emmet commands", "category": "Emmet" }
|
|
2001
|
+
];
|
|
2002
|
+
|
|
2003
|
+
// SCM/Version Control Extensions
|
|
2004
|
+
const scmVersionControlCommands = [
|
|
2005
|
+
{ "command": "workbench.scm.action.setListViewMode", "title": "$(list-ordered) Set List View Mode", "description": "Set SCM to list view mode", "category": "SCM/Version Control" },
|
|
2006
|
+
{ "command": "workbench.scm.action.setTreeViewMode", "title": "$(list-tree) Set Tree View Mode", "description": "Set SCM to tree view mode", "category": "SCM/Version Control" },
|
|
2007
|
+
{ "command": "workbench.scm.action.setListViewModeNavigation", "title": "$(list-ordered) List View Navigation", "description": "Set list view navigation mode", "category": "SCM/Version Control" },
|
|
2008
|
+
{ "command": "workbench.scm.action.setTreeViewModeNavigation", "title": "$(list-tree) Tree View Navigation", "description": "Set tree view navigation mode", "category": "SCM/Version Control" },
|
|
2009
|
+
{ "command": "workbench.scm.action.repositories.setSortKey.discoveryTime", "title": "$(clock) Sort by Discovery Time", "description": "Sort repositories by discovery time", "category": "SCM/Version Control" },
|
|
2010
|
+
{ "command": "workbench.scm.action.repositories.setSortKey.name", "title": "$(sort-alpha) Sort by Name", "description": "Sort repositories by name", "category": "SCM/Version Control" },
|
|
2011
|
+
{ "command": "workbench.scm.action.repositories.setSortKey.path", "title": "$(folder) Sort by Path", "description": "Sort repositories by path", "category": "SCM/Version Control" },
|
|
2012
|
+
{ "command": "workbench.scm.action.repositories.setSelectionMode.single", "title": "$(single-select) Single Selection", "description": "Set single repository selection", "category": "SCM/Version Control" },
|
|
2013
|
+
{ "command": "workbench.scm.action.repositories.setSelectionMode.multiple", "title": "$(multi-select) Multiple Selection", "description": "Set multiple repository selection", "category": "SCM/Version Control" },
|
|
2014
|
+
{ "command": "workbench.scm.action.setSortKey.name", "title": "$(sort-alpha) Sort by Name", "description": "Sort SCM items by name", "category": "SCM/Version Control" },
|
|
2015
|
+
{ "command": "workbench.scm.action.setSortKey.path", "title": "$(folder) Sort by Path", "description": "Sort SCM items by path", "category": "SCM/Version Control" },
|
|
2016
|
+
{ "command": "workbench.scm.action.setSortKey.status", "title": "$(git-merge) Sort by Status", "description": "Sort SCM items by status", "category": "SCM/Version Control" },
|
|
2017
|
+
{ "command": "workbench.scm.action.collapseAllRepositories", "title": "$(collapse-all) Collapse All Repositories", "description": "Collapse all repository views", "category": "SCM/Version Control" },
|
|
2018
|
+
{ "command": "workbench.scm.action.expandAllRepositories", "title": "$(expand-all) Expand All Repositories", "description": "Expand all repository views", "category": "SCM/Version Control" },
|
|
2019
|
+
{ "command": "scm.input.triggerSetup", "title": "$(edit) Trigger SCM Input", "description": "Trigger SCM input setup", "category": "SCM/Version Control" },
|
|
2020
|
+
{ "command": "workbench.scm.action.graph.pickRepository", "title": "$(git-repo) Pick Repository", "description": "Pick repository from graph", "category": "SCM/Version Control" },
|
|
2021
|
+
{ "command": "workbench.scm.action.graph.pickHistoryItemRefs", "title": "$(git-commit) Pick History Item", "description": "Pick history item from graph", "category": "SCM/Version Control" },
|
|
2022
|
+
{ "command": "workbench.scm.action.graph.revealCurrentHistoryItem", "title": "$(reveal) Reveal History Item", "description": "Reveal current history item", "category": "SCM/Version Control" },
|
|
2023
|
+
{ "command": "workbench.scm.action.graph.refresh", "title": "$(refresh) Refresh Graph", "description": "Refresh SCM graph", "category": "SCM/Version Control" },
|
|
2024
|
+
{ "command": "workbench.scm.action.graph.setListViewMode", "title": "$(list-ordered) Graph List View", "description": "Set graph to list view", "category": "SCM/Version Control" },
|
|
2025
|
+
{ "command": "workbench.scm.action.graph.setTreeViewMode", "title": "$(list-tree) Graph Tree View", "description": "Set graph to tree view", "category": "SCM/Version Control" },
|
|
2026
|
+
{ "command": "workbench.scm.action.graph.viewChanges", "title": "$(diff) View Changes", "description": "View changes in graph", "category": "SCM/Version Control" },
|
|
2027
|
+
{ "command": "workbench.scm.action.graph.openFile", "title": "$(file) Open File from Graph", "description": "Open file from SCM graph", "category": "SCM/Version Control" },
|
|
2028
|
+
{ "command": "scm.acceptInput", "title": "$(check) Accept SCM Input", "description": "Accept SCM input", "category": "SCM/Version Control" },
|
|
2029
|
+
{ "command": "scm.clearInput", "title": "$(clear-all) Clear SCM Input", "description": "Clear SCM input", "category": "SCM/Version Control" },
|
|
2030
|
+
{ "command": "scm.viewNextCommit", "title": "$(arrow-down) View Next Commit", "description": "View next commit", "category": "SCM/Version Control" },
|
|
2031
|
+
{ "command": "scm.viewPreviousCommit", "title": "$(arrow-up) View Previous Commit", "description": "View previous commit", "category": "SCM/Version Control" },
|
|
2032
|
+
{ "command": "scm.forceViewNextCommit", "title": "$(arrow-down) Force View Next Commit", "description": "Force view next commit", "category": "SCM/Version Control" },
|
|
2033
|
+
{ "command": "scm.forceViewPreviousCommit", "title": "$(arrow-up) Force View Previous Commit", "description": "Force view previous commit", "category": "SCM/Version Control" },
|
|
2034
|
+
{ "command": "scm.openInIntegratedTerminal", "title": "$(terminal) Open in Terminal", "description": "Open SCM item in terminal", "category": "SCM/Version Control" },
|
|
2035
|
+
{ "command": "scm.openInTerminal", "title": "$(terminal) Open in Terminal", "description": "Open SCM item in terminal", "category": "SCM/Version Control" },
|
|
2036
|
+
{ "command": "scm.setActiveProvider", "title": "$(plug) Set Active Provider", "description": "Set active SCM provider", "category": "SCM/Version Control" },
|
|
2037
|
+
{ "command": "workbench.scm.action.focusPreviousInput", "title": "$(arrow-up) Focus Previous Input", "description": "Focus previous SCM input", "category": "SCM/Version Control" },
|
|
2038
|
+
{ "command": "workbench.scm.action.focusNextInput", "title": "$(arrow-down) Focus Next Input", "description": "Focus next SCM input", "category": "SCM/Version Control" },
|
|
2039
|
+
{ "command": "workbench.scm.action.focusPreviousResourceGroup", "title": "$(arrow-up) Focus Previous Group", "description": "Focus previous resource group", "category": "SCM/Version Control" },
|
|
2040
|
+
{ "command": "workbench.scm.action.focusNextResourceGroup", "title": "$(arrow-down) Focus Next Group", "description": "Focus next resource group", "category": "SCM/Version Control" },
|
|
2041
|
+
{ "command": "scm.editor.triggerSetup", "title": "$(edit) Trigger SCM Editor", "description": "Trigger SCM editor setup", "category": "SCM/Version Control" }
|
|
2042
|
+
];
|
|
2043
|
+
|
|
2044
|
+
// Debug Commands
|
|
2045
|
+
const debugCommands = [
|
|
2046
|
+
{ "command": "workbench.debug.viewlet.action.copyWorkspaceVariableValue", "title": "$(copy) Copy Variable Value", "description": "Copy workspace variable value", "category": "Debug" },
|
|
2047
|
+
{ "command": "callStack.collapse", "title": "$(collapse-all) Collapse Call Stack", "description": "Collapse call stack view", "category": "Debug" },
|
|
2048
|
+
{ "command": "editor.debug.action.copyAddress", "title": "$(copy) Copy Address", "description": "Copy memory address", "category": "Debug" },
|
|
2049
|
+
{ "command": "debug.action.openDisassemblyView", "title": "$(assembly) Open Disassembly", "description": "Open disassembly view", "category": "Debug" },
|
|
2050
|
+
{ "command": "debug.action.toggleDisassemblyViewSourceCode", "title": "$(code) Toggle Source Code", "description": "Toggle source code in disassembly", "category": "Debug" },
|
|
2051
|
+
{ "command": "editor.debug.action.toggleBreakpoint", "title": "$(debug-breakpoint) Toggle Breakpoint", "description": "Toggle breakpoint at line", "category": "Debug" },
|
|
2052
|
+
{ "command": "editor.debug.action.conditionalBreakpoint", "title": "$(debug-breakpoint-conditional) Conditional Breakpoint", "description": "Add conditional breakpoint", "category": "Debug" },
|
|
2053
|
+
{ "command": "editor.debug.action.addLogPoint", "title": "$(debug-breakpoint-log) Add Log Point", "description": "Add log point breakpoint", "category": "Debug" },
|
|
2054
|
+
{ "command": "editor.debug.action.triggerByBreakpoint", "title": "$(debug) Trigger by Breakpoint", "description": "Trigger debug session by breakpoint", "category": "Debug" },
|
|
2055
|
+
{ "command": "editor.debug.action.editBreakpoint", "title": "$(edit) Edit Breakpoint", "description": "Edit breakpoint properties", "category": "Debug" },
|
|
2056
|
+
{ "command": "editor.debug.action.runToCursor", "title": "$(debug-continue) Run to Cursor", "description": "Run debugger to cursor position", "category": "Debug" },
|
|
2057
|
+
{ "command": "editor.debug.action.stepIntoTargets", "title": "$(debug-step-into) Step Into Targets", "description": "Step into specific targets", "category": "Debug" },
|
|
2058
|
+
{ "command": "editor.debug.action.selectionToRepl", "title": "$(terminal) Selection to REPL", "description": "Send selection to debug REPL", "category": "Debug" },
|
|
2059
|
+
{ "command": "editor.debug.action.selectionToWatch", "title": "$(eye) Selection to Watch", "description": "Add selection to watch expressions", "category": "Debug" },
|
|
2060
|
+
{ "command": "editor.debug.action.showDebugHover", "title": "$(hover) Show Debug Hover", "description": "Show debug hover at cursor", "category": "Debug" },
|
|
2061
|
+
{ "command": "editor.debug.action.goToNextBreakpoint", "title": "$(arrow-down) Go to Next Breakpoint", "description": "Go to next breakpoint", "category": "Debug" },
|
|
2062
|
+
{ "command": "editor.debug.action.goToPreviousBreakpoint", "title": "$(arrow-up) Go to Previous Breakpoint", "description": "Go to previous breakpoint", "category": "Debug" },
|
|
2063
|
+
{ "command": "editor.debug.action.closeExceptionWidget", "title": "$(close) Close Exception Widget", "description": "Close exception widget", "category": "Debug" },
|
|
2064
|
+
{ "command": "workbench.action.debug.configure", "title": "$(settings-gear) Configure Debug", "description": "Configure debug settings", "category": "Debug" },
|
|
2065
|
+
{ "command": "debug.toggleReplIgnoreFocus", "title": "$(terminal) Toggle REPL Ignore Focus", "description": "Toggle REPL ignore focus mode", "category": "Debug" },
|
|
2066
|
+
{ "command": "loadedScripts.collapse", "title": "$(collapse-all) Collapse Loaded Scripts", "description": "Collapse loaded scripts view", "category": "Debug" },
|
|
2067
|
+
{ "command": "watch.collapse", "title": "$(collapse-all) Collapse Watch", "description": "Collapse watch expressions", "category": "Debug" },
|
|
2068
|
+
{ "command": "workbench.debug.viewlet.action.addWatchExpression", "title": "$(add) Add Watch Expression", "description": "Add watch expression", "category": "Debug" },
|
|
2069
|
+
{ "command": "workbench.debug.viewlet.action.removeAllWatchExpressions", "title": "$(clear-all) Remove All Watch", "description": "Remove all watch expressions", "category": "Debug" },
|
|
2070
|
+
{ "command": "debug.copyWatchExpression", "title": "$(copy) Copy Watch Expression", "description": "Copy watch expression", "category": "Debug" },
|
|
2071
|
+
{ "command": "workbench.debug.action.addVariableToChat", "title": "$(comment) Variable to Chat", "description": "Add variable to chat", "category": "Debug" },
|
|
2072
|
+
{ "command": "workbench.debug.action.addWatchExpressionToChat", "title": "$(comment) Watch to Chat", "description": "Add watch expression to chat", "category": "Debug" },
|
|
2073
|
+
{ "command": "workbench.debug.action.addScopeToChat", "title": "$(comment) Scope to Chat", "description": "Add scope to chat", "category": "Debug" },
|
|
2074
|
+
{ "command": "workbench.action.inspectContextKeys", "title": "Inspect Context Keys", "description": "Inspect context key values", "category": "Debug/Diagnostics" },
|
|
2075
|
+
{ "command": "workbench.action.toggleScreencastMode", "title": "Toggle Screencast Mode", "description": "Toggle screencast mode for presentations", "category": "Debug/Diagnostics" },
|
|
2076
|
+
{ "command": "workbench.action.logStorage", "title": "Log Storage", "description": "Log storage information", "category": "Debug/Diagnostics" },
|
|
2077
|
+
{ "command": "workbench.action.logWorkingCopies", "title": "Log Working Copies", "description": "Log working copy information", "category": "Debug/Diagnostics" },
|
|
2078
|
+
{ "command": "workbench.action.removeLargeStorageDatabaseEntries", "title": "Remove Large Storage Entries", "description": "Remove large storage database entries", "category": "Debug/Diagnostics" },
|
|
2079
|
+
{ "command": "workbench.action.showPolicyDiagnostics", "title": "Show Policy Diagnostics", "description": "Show policy diagnostic information", "category": "Debug/Diagnostics" },
|
|
2080
|
+
{ "command": "workbench.debug.viewlet.action.copyWorkspaceVariableValue", "title": "Copy Workspace Variable Value", "description": "Copy workspace variable value to clipboard", "category": "Debug Commands" },
|
|
2081
|
+
{ "command": "callStack.collapse", "title": "Collapse Call Stack", "description": "Collapse all items in call stack", "category": "Debug Commands" },
|
|
2082
|
+
{ "command": "editor.debug.action.copyAddress", "title": "Copy Address", "description": "Copy memory address to clipboard", "category": "Debug Commands" },
|
|
2083
|
+
{ "command": "debug.action.openDisassemblyView", "title": "Open Disassembly View", "description": "Open disassembly view for debugging", "category": "Debug Commands" },
|
|
2084
|
+
{ "command": "debug.action.toggleDisassemblyViewSourceCode", "title": "Toggle Disassembly Source Code", "description": "Toggle between disassembly and source code", "category": "Debug Commands" },
|
|
2085
|
+
{ "command": "editor.debug.action.toggleBreakpoint", "title": "Toggle Breakpoint", "description": "Toggle breakpoint at current line", "category": "Debug Commands" },
|
|
2086
|
+
{ "command": "editor.debug.action.conditionalBreakpoint", "title": "Add Conditional Breakpoint", "description": "Add breakpoint with condition", "category": "Debug Commands" },
|
|
2087
|
+
{ "command": "editor.debug.action.addLogPoint", "title": "Add Log Point", "description": "Add log point for debugging", "category": "Debug Commands" },
|
|
2088
|
+
{ "command": "editor.debug.action.triggerByBreakpoint", "title": "Trigger by Breakpoint", "description": "Trigger action when breakpoint hits", "category": "Debug Commands" },
|
|
2089
|
+
{ "command": "editor.debug.action.editBreakpoint", "title": "Edit Breakpoint", "description": "Edit existing breakpoint", "category": "Debug Commands" },
|
|
2090
|
+
{ "command": "editor.debug.action.runToCursor", "title": "Run to Cursor", "description": "Continue execution to cursor position", "category": "Debug Commands" },
|
|
2091
|
+
{ "command": "editor.debug.action.stepIntoTargets", "title": "Step Into Targets", "description": "Step into specific targets", "category": "Debug Commands" },
|
|
2092
|
+
{ "command": "editor.debug.action.selectionToRepl", "title": "Selection to REPL", "description": "Send selection to debug console", "category": "Debug Commands" },
|
|
2093
|
+
{ "command": "editor.debug.action.selectionToWatch", "title": "Selection to Watch", "description": "Add selection to watch expressions", "category": "Debug Commands" },
|
|
2094
|
+
{ "command": "editor.debug.action.showDebugHover", "title": "Show Debug Hover", "description": "Show debug information on hover", "category": "Debug Commands" },
|
|
2095
|
+
{ "command": "editor.debug.action.goToNextBreakpoint", "title": "Go to Next Breakpoint", "description": "Navigate to next breakpoint", "category": "Debug Commands" },
|
|
2096
|
+
{ "command": "editor.debug.action.goToPreviousBreakpoint", "title": "Go to Previous Breakpoint", "description": "Navigate to previous breakpoint", "category": "Debug Commands" },
|
|
2097
|
+
{ "command": "editor.debug.action.closeExceptionWidget", "title": "Close Exception Widget", "description": "Close exception display widget", "category": "Debug Commands" },
|
|
2098
|
+
{ "command": "workbench.action.debug.configure", "title": "Configure Debug", "description": "Open debug configuration", "category": "Debug Commands" },
|
|
2099
|
+
{ "command": "debug.toggleReplIgnoreFocus", "title": "Toggle REPL Ignore Focus", "description": "Toggle REPL ignore focus mode", "category": "Debug Commands" },
|
|
2100
|
+
{ "command": "loadedScripts.collapse", "title": "Collapse Loaded Scripts", "description": "Collapse all loaded scripts", "category": "Debug Commands" },
|
|
2101
|
+
{ "command": "watch.collapse", "title": "Collapse Watch Expressions", "description": "Collapse all watch expressions", "category": "Debug Commands" },
|
|
2102
|
+
{ "command": "workbench.debug.viewlet.action.addWatchExpression", "title": "Add Watch Expression", "description": "Add new watch expression", "category": "Debug Commands" },
|
|
2103
|
+
{ "command": "workbench.debug.viewlet.action.removeAllWatchExpressions", "title": "Remove All Watch Expressions", "description": "Clear all watch expressions", "category": "Debug Commands" },
|
|
2104
|
+
{ "command": "debug.copyWatchExpression", "title": "Copy Watch Expression", "description": "Copy watch expression to clipboard", "category": "Debug Commands" },
|
|
2105
|
+
{ "command": "workbench.debug.action.addVariableToChat", "title": "Add Variable to Chat", "description": "Share variable in chat", "category": "Debug Commands" },
|
|
2106
|
+
{ "command": "workbench.debug.action.addWatchExpressionToChat", "title": "Add Watch Expression to Chat", "description": "Share watch expression in chat", "category": "Debug Commands" },
|
|
2107
|
+
{ "command": "workbench.debug.action.addScopeToChat", "title": "Add Scope to Chat", "description": "Share scope in chat", "category": "Debug Commands" }
|
|
2108
|
+
];
|
|
2109
|
+
|
|
2110
|
+
|
|
2111
|
+
|
|
2112
|
+
// Problems Panel Commands
|
|
2113
|
+
const problemsPanelCommands = [
|
|
2114
|
+
{ "command": "problems.action.open", "title": "$(go-to-file) Open Problem", "description": "Open the selected problem", "category": "Problems" },
|
|
2115
|
+
{ "command": "problems.action.openToSide", "title": "$(split-horizontal) Open Problem to Side", "description": "Open problem in side editor", "category": "Problems" },
|
|
2116
|
+
{ "command": "workbench.action.showErrorsWarnings", "title": "$(warning) Show Errors/Warnings", "description": "Show errors and warnings", "category": "Problems" },
|
|
2117
|
+
{ "command": "problems.action.showQuickFixes", "title": "$(lightbulb) Show Quick Fixes", "description": "Show quick fixes for problem", "category": "Problems" },
|
|
2118
|
+
{ "command": "workbench.actions.table.workbench.panel.markers.view.viewAsTree", "title": "$(list-tree) View as Tree", "description": "View problems as tree", "category": "Problems" },
|
|
2119
|
+
{ "command": "workbench.actions.table.workbench.panel.markers.view.viewAsTable", "title": "$(list-ordered) View as Table", "description": "View problems as table", "category": "Problems" },
|
|
2120
|
+
{ "command": "workbench.actions.workbench.panel.markers.view.toggleErrors", "title": "$(error) Toggle Errors", "description": "Toggle error display", "category": "Problems" },
|
|
2121
|
+
{ "command": "workbench.actions.workbench.panel.markers.view.toggleWarnings", "title": "$(warning) Toggle Warnings", "description": "Toggle warning display", "category": "Problems" },
|
|
2122
|
+
{ "command": "workbench.actions.workbench.panel.markers.view.toggleInfos", "title": "$(info) Toggle Infos", "description": "Toggle info display", "category": "Problems" },
|
|
2123
|
+
{ "command": "workbench.actions.workbench.panel.markers.view.toggleActiveFile", "title": "$(file) Toggle Active File", "description": "Toggle active file problems", "category": "Problems" },
|
|
2124
|
+
{ "command": "workbench.actions.workbench.panel.markers.view.toggleExcludedFiles", "title": "$(exclude) Toggle Excluded Files", "description": "Toggle excluded files", "category": "Problems" },
|
|
2125
|
+
{ "command": "workbench.action.problems.focus", "title": "$(panel) Focus Problems", "description": "Focus problems panel", "category": "Problems" },
|
|
2126
|
+
{ "command": "problems.action.copy", "title": "$(copy) Copy Problem", "description": "Copy problem details", "category": "Problems" },
|
|
2127
|
+
{ "command": "problems.action.copyMessage", "title": "$(copy) Copy Message", "description": "Copy problem message", "category": "Problems" },
|
|
2128
|
+
{ "command": "problems.action.copyRelatedInformationMessage", "title": "$(copy) Copy Related Info", "description": "Copy related information", "category": "Problems" },
|
|
2129
|
+
{ "command": "problems.action.focusProblemsFromFilter", "title": "$(filter) Focus Problems from Filter", "description": "Focus problems from filter", "category": "Problems" },
|
|
2130
|
+
{ "command": "problems.action.focusFilter", "title": "$(filter) Focus Filter", "description": "Focus problems filter", "category": "Problems" },
|
|
2131
|
+
{ "command": "problems.action.showMultilineMessage", "title": "$(multiline) Show Multiline Message", "description": "Show multiline problem message", "category": "Problems" },
|
|
2132
|
+
{ "command": "problems.action.showSinglelineMessage", "title": "$(singleline) Show Singleline Message", "description": "Show singleline problem message", "category": "Problems" },
|
|
2133
|
+
{ "command": "problems.action.clearFilterText", "title": "$(clear-all) Clear Filter", "description": "Clear filter text", "category": "Problems" },
|
|
2134
|
+
{ "command": "workbench.actions.treeView.workbench.panel.markers.view.collapseAll", "title": "$(collapse-all) Collapse All", "description": "Collapse all problems", "category": "Problems" },
|
|
2135
|
+
{ "command": "workbench.actions.view.toggleProblems", "title": "$(panel) Toggle Problems", "description": "Toggle problems panel", "category": "Problems" },
|
|
2136
|
+
{ "command": "problems.action.open", "title": "Open Problem", "description": "Open selected problem", "category": "Problems Panel" },
|
|
2137
|
+
{ "command": "problems.action.openToSide", "title": "Open Problem to Side", "description": "Open problem in side editor", "category": "Problems Panel" },
|
|
2138
|
+
{ "command": "workbench.action.showErrorsWarnings", "title": "Show Errors and Warnings", "description": "Display errors and warnings", "category": "Problems Panel" },
|
|
2139
|
+
{ "command": "problems.action.showQuickFixes", "title": "Show Quick Fixes", "description": "Display available quick fixes", "category": "Problems Panel" },
|
|
2140
|
+
{ "command": "workbench.actions.table.workbench.panel.markers.view.viewAsTree", "title": "View as Tree", "description": "Display problems in tree view", "category": "Problems Panel" },
|
|
2141
|
+
{ "command": "workbench.actions.table.workbench.panel.markers.view.viewAsTable", "title": "View as Table", "description": "Display problems in table view", "category": "Problems Panel" },
|
|
2142
|
+
{ "command": "workbench.actions.workbench.panel.markers.view.toggleErrors", "title": "Toggle Errors", "description": "Show/hide errors", "category": "Problems Panel" },
|
|
2143
|
+
{ "command": "workbench.actions.workbench.panel.markers.view.toggleWarnings", "title": "Toggle Warnings", "description": "Show/hide warnings", "category": "Problems Panel" },
|
|
2144
|
+
{ "command": "workbench.actions.workbench.panel.markers.view.toggleInfos", "title": "Toggle Infos", "description": "Show/hide informational messages", "category": "Problems Panel" },
|
|
2145
|
+
{ "command": "workbench.actions.workbench.panel.markers.view.toggleActiveFile", "title": "Toggle Active File", "description": "Show/hide active file problems", "category": "Problems Panel" },
|
|
2146
|
+
{ "command": "workbench.actions.workbench.panel.markers.view.toggleExcludedFiles", "title": "Toggle Excluded Files", "description": "Show/hide excluded files", "category": "Problems Panel" },
|
|
2147
|
+
{ "command": "workbench.action.problems.focus", "title": "Focus Problems Panel", "description": "Move focus to problems panel", "category": "Problems Panel" },
|
|
2148
|
+
{ "command": "problems.action.copy", "title": "Copy Problem", "description": "Copy problem details", "category": "Problems Panel" },
|
|
2149
|
+
{ "command": "problems.action.copyMessage", "title": "Copy Message", "description": "Copy problem message", "category": "Problems Panel" },
|
|
2150
|
+
{ "command": "problems.action.copyRelatedInformationMessage", "title": "Copy Related Information", "description": "Copy related information message", "category": "Problems Panel" },
|
|
2151
|
+
{ "command": "problems.action.focusProblemsFromFilter", "title": "Focus Problems from Filter", "description": "Focus problems based on filter", "category": "Problems Panel" },
|
|
2152
|
+
{ "command": "problems.action.focusFilter", "title": "Focus Filter", "description": "Focus problem filter field", "category": "Problems Panel" },
|
|
2153
|
+
{ "command": "problems.action.showMultilineMessage", "title": "Show Multiline Message", "description": "Display multiline messages", "category": "Problems Panel" },
|
|
2154
|
+
{ "command": "problems.action.showSinglelineMessage", "title": "Show Singleline Message", "description": "Display singleline messages", "category": "Problems Panel" },
|
|
2155
|
+
{ "command": "problems.action.clearFilterText", "title": "Clear Filter Text", "description": "Clear problem filter text", "category": "Problems Panel" },
|
|
2156
|
+
{ "command": "workbench.actions.treeView.workbench.panel.markers.view.collapseAll", "title": "Collapse All Problems", "description": "Collapse all problem items", "category": "Problems Panel" },
|
|
2157
|
+
{ "command": "workbench.actions.view.toggleProblems", "title": "Toggle Problems View", "description": "Show/hide problems view", "category": "Problems Panel" }
|
|
2158
|
+
];
|
|
2159
|
+
|
|
2160
|
+
// Merge Editor Commands
|
|
2161
|
+
const mergeEditorCommands = [
|
|
2162
|
+
{ "command": "merge.openResult", "title": "Open Merge Result", "description": "Open merge result editor", "category": "Merge Editor" },
|
|
2163
|
+
{ "command": "merge.mixedLayout", "title": "Mixed Layout", "description": "Use mixed layout for merge", "category": "Merge Editor" },
|
|
2164
|
+
{ "command": "merge.columnLayout", "title": "Column Layout", "description": "Use column layout for merge", "category": "Merge Editor" },
|
|
2165
|
+
{ "command": "merge.openBaseEditor", "title": "Open Base Editor", "description": "Open base editor in merge", "category": "Merge Editor" },
|
|
2166
|
+
{ "command": "merge.showNonConflictingChanges", "title": "Show Non-Conflicting Changes", "description": "Display non-conflicting changes", "category": "Merge Editor" },
|
|
2167
|
+
{ "command": "merge.showBase", "title": "Show Base", "description": "Show base version in merge", "category": "Merge Editor" },
|
|
2168
|
+
{ "command": "merge.showBaseTop", "title": "Show Base at Top", "description": "Display base at top position", "category": "Merge Editor" },
|
|
2169
|
+
{ "command": "merge.showBaseCenter", "title": "Show Base at Center", "description": "Display base at center position", "category": "Merge Editor" },
|
|
2170
|
+
{ "command": "merge.goToNextUnhandledConflict", "title": "Go to Next Conflict", "description": "Navigate to next unhandled conflict", "category": "Merge Editor" },
|
|
2171
|
+
{ "command": "merge.goToPreviousUnhandledConflict", "title": "Go to Previous Conflict", "description": "Navigate to previous unhandled conflict", "category": "Merge Editor" },
|
|
2172
|
+
{ "command": "merge.toggleActiveConflictInput1", "title": "Toggle Conflict Input 1", "description": "Toggle first conflict input", "category": "Merge Editor" },
|
|
2173
|
+
{ "command": "merge.toggleActiveConflictInput2", "title": "Toggle Conflict Input 2", "description": "Toggle second conflict input", "category": "Merge Editor" },
|
|
2174
|
+
{ "command": "mergeEditor.compareInput1WithBase", "title": "Compare Input 1 with Base", "description": "Compare first input with base", "category": "Merge Editor" },
|
|
2175
|
+
{ "command": "mergeEditor.compareInput2WithBase", "title": "Compare Input 2 with Base", "description": "Compare second input with base", "category": "Merge Editor" },
|
|
2176
|
+
{ "command": "merge.acceptAllInput1", "title": "Accept All from Input 1", "description": "Accept all changes from first input", "category": "Merge Editor" },
|
|
2177
|
+
{ "command": "merge.acceptAllInput2", "title": "Accept All from Input 2", "description": "Accept all changes from second input", "category": "Merge Editor" },
|
|
2178
|
+
{ "command": "mergeEditor.resetResultToBaseAndAutoMerge", "title": "Reset to Base and Auto-Merge", "description": "Reset result to base and auto-merge", "category": "Merge Editor" },
|
|
2179
|
+
{ "command": "mergeEditor.acceptMerge", "title": "Accept Merge", "description": "Accept the current merge", "category": "Merge Editor" },
|
|
2180
|
+
{ "command": "mergeEditor.resetCloseWithConflictsChoice", "title": "Reset Close with Conflicts Choice", "description": "Reset choice for closing with conflicts", "category": "Merge Editor" },
|
|
2181
|
+
{ "command": "mergeEditor.acceptAllCombination", "title": "Accept All Combination", "description": "Accept all combination of changes", "category": "Merge Editor" },
|
|
2182
|
+
{ "command": "mergeEditor.toggleBetweenInputs", "title": "Toggle Between Inputs", "description": "Toggle between input versions", "category": "Merge Editor" },
|
|
2183
|
+
{ "command": "merge.dev.copyContentsJson", "title": "Copy Contents JSON", "description": "Copy merge contents as JSON", "category": "Merge Editor" },
|
|
2184
|
+
{ "command": "merge.dev.saveContentsToFolder", "title": "Save Contents to Folder", "description": "Save merge contents to folder", "category": "Merge Editor" },
|
|
2185
|
+
{ "command": "merge.dev.loadContentsFromFolder", "title": "Load Contents from Folder", "description": "Load merge contents from folder", "category": "Merge Editor" },
|
|
2186
|
+
{ "command": "merge.dev.openContentsJson", "title": "Open Contents JSON", "description": "Open merge contents JSON", "category": "Merge Editor" },
|
|
2187
|
+
{ "command": "merge.dev.openSelectionInTemporaryMergeEditor", "title": "Open Selection in Temporary Merge Editor", "description": "Open selection in temporary merge editor", "category": "Merge Editor" },
|
|
2188
|
+
{ "command": "merge.openResult", "title": "$(merge) Open Merge Result", "description": "Open merge result", "category": "Merge Editor" },
|
|
2189
|
+
{ "command": "merge.mixedLayout", "title": "$(layout) Mixed Layout", "description": "Set mixed layout for merge", "category": "Merge Editor" },
|
|
2190
|
+
{ "command": "merge.columnLayout", "title": "$(columns) Column Layout", "description": "Set column layout for merge", "category": "Merge Editor" },
|
|
2191
|
+
{ "command": "merge.openBaseEditor", "title": "$(file) Open Base Editor", "description": "Open base editor in merge", "category": "Merge Editor" },
|
|
2192
|
+
{ "command": "merge.showNonConflictingChanges", "title": "$(check) Show Non-Conflicting", "description": "Show non-conflicting changes", "category": "Merge Editor" },
|
|
2193
|
+
{ "command": "merge.showBase", "title": "$(file) Show Base", "description": "Show base version", "category": "Merge Editor" },
|
|
2194
|
+
{ "command": "merge.showBaseTop", "title": "$(arrow-up) Show Base Top", "description": "Show base at top", "category": "Merge Editor" },
|
|
2195
|
+
{ "command": "merge.showBaseCenter", "title": "$(center) Show Base Center", "description": "Show base in center", "category": "Merge Editor" },
|
|
2196
|
+
{ "command": "merge.goToNextUnhandledConflict", "title": "$(arrow-down) Next Conflict", "description": "Go to next unhandled conflict", "category": "Merge Editor" },
|
|
2197
|
+
{ "command": "merge.goToPreviousUnhandledConflict", "title": "$(arrow-up) Previous Conflict", "description": "Go to previous unhandled conflict", "category": "Merge Editor" },
|
|
2198
|
+
{ "command": "merge.toggleActiveConflictInput1", "title": "$(toggle) Toggle Input 1", "description": "Toggle active conflict input 1", "category": "Merge Editor" },
|
|
2199
|
+
{ "command": "merge.toggleActiveConflictInput2", "title": "$(toggle) Toggle Input 2", "description": "Toggle active conflict input 2", "category": "Merge Editor" },
|
|
2200
|
+
{ "command": "mergeEditor.compareInput1WithBase", "title": "$(diff) Compare Input 1 with Base", "description": "Compare input 1 with base", "category": "Merge Editor" },
|
|
2201
|
+
{ "command": "mergeEditor.compareInput2WithBase", "title": "$(diff) Compare Input 2 with Base", "description": "Compare input 2 with base", "category": "Merge Editor" },
|
|
2202
|
+
{ "command": "merge.acceptAllInput1", "title": "$(check) Accept All Input 1", "description": "Accept all from input 1", "category": "Merge Editor" },
|
|
2203
|
+
{ "command": "merge.acceptAllInput2", "title": "$(check) Accept All Input 2", "description": "Accept all from input 2", "category": "Merge Editor" },
|
|
2204
|
+
{ "command": "mergeEditor.resetResultToBaseAndAutoMerge", "title": "$(refresh) Reset to Base & Auto-Merge", "description": "Reset result to base and auto-merge", "category": "Merge Editor" },
|
|
2205
|
+
{ "command": "mergeEditor.acceptMerge", "title": "$(check) Accept Merge", "description": "Accept merge result", "category": "Merge Editor" },
|
|
2206
|
+
{ "command": "mergeEditor.resetCloseWithConflictsChoice", "title": "$(refresh) Reset Close Choice", "description": "Reset close with conflicts choice", "category": "Merge Editor" },
|
|
2207
|
+
{ "command": "mergeEditor.acceptAllCombination", "title": "$(combine) Accept All Combination", "description": "Accept all combination", "category": "Merge Editor" },
|
|
2208
|
+
{ "command": "mergeEditor.toggleBetweenInputs", "title": "$(arrow-swap) Toggle Between Inputs", "description": "Toggle between merge inputs", "category": "Merge Editor" },
|
|
2209
|
+
{ "command": "merge.dev.copyContentsJson", "title": "$(copy) Copy Contents JSON", "description": "Copy merge contents as JSON", "category": "Merge Editor" },
|
|
2210
|
+
{ "command": "merge.dev.saveContentsToFolder", "title": "$(save) Save Contents to Folder", "description": "Save merge contents to folder", "category": "Merge Editor" },
|
|
2211
|
+
{ "command": "merge.dev.loadContentsFromFolder", "title": "$(folder-opened) Load Contents from Folder", "description": "Load merge contents from folder", "category": "Merge Editor" },
|
|
2212
|
+
{ "command": "merge.dev.openContentsJson", "title": "$(json) Open Contents JSON", "description": "Open merge contents JSON", "category": "Merge Editor" },
|
|
2213
|
+
{ "command": "merge.dev.openSelectionInTemporaryMergeEditor", "title": "$(edit) Open in Temporary Editor", "description": "Open selection in temporary merge editor", "category": "Merge Editor" }
|
|
2214
|
+
];
|
|
2215
|
+
|
|
2216
|
+
// Multi-Diff Editor Commands
|
|
2217
|
+
const multiDiffEditorCommands = [
|
|
2218
|
+
{ "command": "multiDiffEditor.goToFile", "title": "$(go-to-file) Go to File", "description": "Go to file in multi-diff editor", "category": "Multi-Diff Editor" },
|
|
2219
|
+
{ "command": "multiDiffEditor.goToNextChange", "title": "$(arrow-down) Go to Next Change", "description": "Go to next change in multi-diff", "category": "Multi-Diff Editor" },
|
|
2220
|
+
{ "command": "multiDiffEditor.goToPreviousChange", "title": "$(arrow-up) Go to Previous Change", "description": "Go to previous change in multi-diff", "category": "Multi-Diff Editor" },
|
|
2221
|
+
{ "command": "multiDiffEditor.collapseAll", "title": "$(collapse-all) Collapse All", "description": "Collapse all in multi-diff", "category": "Multi-Diff Editor" },
|
|
2222
|
+
{ "command": "multiDiffEditor.expandAll", "title": "$(expand-all) Expand All", "description": "Expand all in multi-diff", "category": "Multi-Diff Editor" },
|
|
2223
|
+
{ "command": "multiDiffEditor.goToFile", "title": "Go to File", "description": "Navigate to specific file in multi-diff", "category": "Multi-Diff Editor" },
|
|
2224
|
+
{ "command": "multiDiffEditor.goToNextChange", "title": "Go to Next Change", "description": "Navigate to next change", "category": "Multi-Diff Editor" },
|
|
2225
|
+
{ "command": "multiDiffEditor.goToPreviousChange", "title": "Go to Previous Change", "description": "Navigate to previous change", "category": "Multi-Diff Editor" },
|
|
2226
|
+
{ "command": "multiDiffEditor.collapseAll", "title": "Collapse All", "description": "Collapse all diff sections", "category": "Multi-Diff Editor" },
|
|
2227
|
+
{ "command": "multiDiffEditor.expandAll", "title": "Expand All", "description": "Expand all diff sections", "category": "Multi-Diff Editor" }
|
|
2228
|
+
];
|
|
2229
|
+
|
|
2230
|
+
// URL/Web Commands
|
|
2231
|
+
const urlWebCommands = [
|
|
2232
|
+
{ "command": "workbench.action.url.openUrl", "title": "Open URL", "description": "Open URL in browser", "category": "URL/Web Commands" },
|
|
2233
|
+
{ "command": "workbench.action.manageTrustedDomain", "title": "Manage Trusted Domains", "description": "Manage trusted domains list", "category": "URL/Web Commands" },
|
|
2234
|
+
{ "command": "workbench.action.url.openUrl", "title": "$(globe) Open URL", "description": "Open URL from input", "category": "URL/Web" },
|
|
2235
|
+
{ "command": "workbench.action.manageTrustedDomain", "title": "$(shield) Manage Trusted Domains", "description": "Manage trusted domains", "category": "URL/Web" }
|
|
2236
|
+
];
|
|
2237
|
+
// Icon Select Box Commands
|
|
2238
|
+
const iconSelectBoxCommands = [
|
|
2239
|
+
{ "command": "iconSelectBox.focusUp", "title": "$(arrow-up) Focus Up", "description": "Focus up in icon select", "category": "Icon Select" },
|
|
2240
|
+
{ "command": "iconSelectBox.focusDown", "title": "$(arrow-down) Focus Down", "description": "Focus down in icon select", "category": "Icon Select" },
|
|
2241
|
+
{ "command": "iconSelectBox.focusNext", "title": "$(arrow-right) Focus Next", "description": "Focus next in icon select", "category": "Icon Select" },
|
|
2242
|
+
{ "command": "iconSelectBox.focusPrevious", "title": "$(arrow-left) Focus Previous", "description": "Focus previous in icon select", "category": "Icon Select" },
|
|
2243
|
+
{ "command": "iconSelectBox.selectFocused", "title": "$(check) Select Focused", "description": "Select focused icon", "category": "Icon Select" },
|
|
2244
|
+
{ "command": "iconSelectBox.focusUp", "title": "Focus Up", "description": "Move focus up in icon select box", "category": "Icon Select Box" },
|
|
2245
|
+
{ "command": "iconSelectBox.focusDown", "title": "Focus Down", "description": "Move focus down in icon select box", "category": "Icon Select Box" },
|
|
2246
|
+
{ "command": "iconSelectBox.focusNext", "title": "Focus Next", "description": "Move focus to next item", "category": "Icon Select Box" },
|
|
2247
|
+
{ "command": "iconSelectBox.focusPrevious", "title": "Focus Previous", "description": "Move focus to previous item", "category": "Icon Select Box" },
|
|
2248
|
+
{ "command": "iconSelectBox.selectFocused", "title": "Select Focused", "description": "Select currently focused item", "category": "Icon Select Box" }
|
|
2249
|
+
];
|
|
2250
|
+
|
|
2251
|
+
|
|
2252
|
+
// Terminal (Workbench/Extension) Commands - FIRST PART
|
|
2253
|
+
const terminalWorkbenchCommands1 = [
|
|
2254
|
+
{ "command": "workbench.action.terminal.newInActiveWorkspace", "title": "$(terminal) New in Active Workspace", "description": "Create terminal in active workspace", "category": "Terminal" },
|
|
2255
|
+
{ "command": "workbench.action.createTerminalEditor", "title": "$(terminal) Create Terminal Editor", "description": "Create terminal as editor", "category": "Terminal" },
|
|
2256
|
+
{ "command": "workbench.action.createTerminalEditorSameGroup", "title": "$(terminal) Create in Same Group", "description": "Create terminal editor in same group", "category": "Terminal" },
|
|
2257
|
+
{ "command": "workbench.action.createTerminalEditorSide", "title": "$(split-horizontal) Create Terminal Side", "description": "Create terminal editor to side", "category": "Terminal" },
|
|
2258
|
+
{ "command": "workbench.action.terminal.newInNewWindow", "title": "$(new-window) New in New Window", "description": "Create terminal in new window", "category": "Terminal" },
|
|
2259
|
+
{ "command": "workbench.action.terminal.moveToEditor", "title": "$(move) Move to Editor", "description": "Move terminal to editor", "category": "Terminal" },
|
|
2260
|
+
{ "command": "workbench.action.terminal.moveIntoNewWindow", "title": "$(new-window) Move to New Window", "description": "Move terminal to new window", "category": "Terminal" },
|
|
2261
|
+
{ "command": "workbench.action.terminal.moveToTerminalPanel", "title": "$(move) Move to Terminal Panel", "description": "Move to terminal panel", "category": "Terminal" },
|
|
2262
|
+
{ "command": "workbench.action.terminal.focusPreviousPane", "title": "$(arrow-up) Focus Previous Pane", "description": "Focus previous terminal pane", "category": "Terminal" },
|
|
2263
|
+
{ "command": "workbench.action.terminal.focusNextPane", "title": "$(arrow-down) Focus Next Pane", "description": "Focus next terminal pane", "category": "Terminal" },
|
|
2264
|
+
{ "command": "workbench.action.terminal.resizePaneLeft", "title": "$(arrow-left) Resize Left", "description": "Resize terminal pane left", "category": "Terminal" },
|
|
2265
|
+
{ "command": "workbench.action.terminal.resizePaneRight", "title": "$(arrow-right) Resize Right", "description": "Resize terminal pane right", "category": "Terminal" },
|
|
2266
|
+
{ "command": "workbench.action.terminal.resizePaneUp", "title": "$(arrow-up) Resize Up", "description": "Resize terminal pane up", "category": "Terminal" },
|
|
2267
|
+
{ "command": "workbench.action.terminal.resizePaneDown", "title": "$(arrow-down) Resize Down", "description": "Resize terminal pane down", "category": "Terminal" },
|
|
2268
|
+
{ "command": "workbench.action.terminal.focus", "title": "$(terminal) Focus Terminal", "description": "Focus terminal", "category": "Terminal" },
|
|
2269
|
+
{ "command": "workbench.action.terminal.focusTabs", "title": "$(tabs) Focus Terminal Tabs", "description": "Focus terminal tabs", "category": "Terminal" },
|
|
2270
|
+
{ "command": "workbench.action.terminal.focusNext", "title": "$(arrow-down) Focus Next Terminal", "description": "Focus next terminal", "category": "Terminal" },
|
|
2271
|
+
{ "command": "workbench.action.terminal.focusPrevious", "title": "$(arrow-up) Focus Previous Terminal", "description": "Focus previous terminal", "category": "Terminal" },
|
|
2272
|
+
{ "command": "workbench.action.terminal.runSelectedText", "title": "$(play) Run Selected Text", "description": "Run selected text in terminal", "category": "Terminal" },
|
|
2273
|
+
{ "command": "workbench.action.terminal.runActiveFile", "title": "$(play) Run Active File", "description": "Run active file in terminal", "category": "Terminal" },
|
|
2274
|
+
{ "command": "workbench.action.terminal.scrollDown", "title": "$(arrow-down) Scroll Down", "description": "Scroll terminal down", "category": "Terminal" },
|
|
2275
|
+
{ "command": "workbench.action.terminal.scrollDownPage", "title": "$(arrow-down) Scroll Down Page", "description": "Scroll terminal down one page", "category": "Terminal" },
|
|
2276
|
+
{ "command": "workbench.action.terminal.scrollToBottom", "title": "$(arrow-down) Scroll to Bottom", "description": "Scroll terminal to bottom", "category": "Terminal" },
|
|
2277
|
+
{ "command": "workbench.action.terminal.scrollUp", "title": "$(arrow-up) Scroll Up", "description": "Scroll terminal up", "category": "Terminal" },
|
|
2278
|
+
{ "command": "workbench.action.terminal.scrollUpPage", "title": "$(arrow-up) Scroll Up Page", "description": "Scroll terminal up one page", "category": "Terminal" },
|
|
2279
|
+
{ "command": "workbench.action.terminal.scrollToTop", "title": "$(arrow-up) Scroll to Top", "description": "Scroll terminal to top", "category": "Terminal" },
|
|
2280
|
+
{ "command": "workbench.action.terminal.clearSelection", "title": "$(clear-all) Clear Selection", "description": "Clear terminal selection", "category": "Terminal" },
|
|
2281
|
+
{ "command": "workbench.action.terminal.changeIcon", "title": "$(symbol-color) Change Icon", "description": "Change terminal icon", "category": "Terminal" },
|
|
2282
|
+
{ "command": "workbench.action.terminal.changeIconActiveTab", "title": "$(symbol-color) Change Active Tab Icon", "description": "Change active tab icon", "category": "Terminal" },
|
|
2283
|
+
{ "command": "workbench.action.terminal.changeColor", "title": "$(color-mode) Change Color", "description": "Change terminal color", "category": "Terminal" },
|
|
2284
|
+
{ "command": "workbench.action.terminal.changeColorActiveTab", "title": "$(color-mode) Change Active Tab Color", "description": "Change active tab color", "category": "Terminal" },
|
|
2285
|
+
{ "command": "workbench.action.terminal.rename", "title": "$(edit) Rename Terminal", "description": "Rename terminal", "category": "Terminal" },
|
|
2286
|
+
{ "command": "workbench.action.terminal.renameActiveTab", "title": "$(edit) Rename Active Tab", "description": "Rename active terminal tab", "category": "Terminal" },
|
|
2287
|
+
{ "command": "workbench.action.terminal.detachSession", "title": "$(detach) Detach Session", "description": "Detach terminal session", "category": "Terminal" },
|
|
2288
|
+
{ "command": "workbench.action.terminal.attachToSession", "title": "$(attach) Attach to Session", "description": "Attach to terminal session", "category": "Terminal" },
|
|
2289
|
+
{ "command": "workbench.action.terminal.scrollToPreviousCommand", "title": "$(arrow-up) Scroll to Previous Command", "description": "Scroll to previous command", "category": "Terminal" },
|
|
2290
|
+
{ "command": "workbench.action.terminal.scrollToNextCommand", "title": "$(arrow-down) Scroll to Next Command", "description": "Scroll to next command", "category": "Terminal" },
|
|
2291
|
+
{ "command": "workbench.action.terminal.selectToPreviousCommand", "title": "$(arrow-up) Select to Previous Command", "description": "Select to previous command", "category": "Terminal" },
|
|
2292
|
+
{ "command": "workbench.action.terminal.selectToNextCommand", "title": "$(arrow-down) Select to Next Command", "description": "Select to next command", "category": "Terminal" },
|
|
2293
|
+
{ "command": "workbench.action.terminal.selectToPreviousLine", "title": "$(arrow-up) Select to Previous Line", "description": "Select to previous line", "category": "Terminal" },
|
|
2294
|
+
{ "command": "workbench.action.terminal.selectToNextLine", "title": "$(arrow-down) Select to Next Line", "description": "Select to next line", "category": "Terminal" },
|
|
2295
|
+
{ "command": "workbench.action.terminal.newWithCwd", "title": "$(terminal) New with CWD", "description": "New terminal with current directory", "category": "Terminal" },
|
|
2296
|
+
{ "command": "workbench.action.terminal.renameWithArg", "title": "$(edit) Rename with Argument", "description": "Rename terminal with argument", "category": "Terminal" },
|
|
2297
|
+
{ "command": "workbench.action.terminal.relaunch", "title": "$(refresh) Relaunch Terminal", "description": "Relaunch terminal", "category": "Terminal" },
|
|
2298
|
+
{ "command": "workbench.action.terminal.split", "title": "$(split-horizontal) Split Terminal", "description": "Split terminal", "category": "Terminal" },
|
|
2299
|
+
{ "command": "workbench.action.terminal.splitActiveTab", "title": "$(split-horizontal) Split Active Tab", "description": "Split active terminal tab", "category": "Terminal" },
|
|
2300
|
+
{ "command": "workbench.action.terminal.unsplit", "title": "$(combine) Unsplit Terminal", "description": "Unsplit terminal", "category": "Terminal" },
|
|
2301
|
+
{ "command": "workbench.action.terminal.joinActiveTab", "title": "$(combine) Join Active Tab", "description": "Join active terminal tab", "category": "Terminal" },
|
|
2302
|
+
{ "command": "workbench.action.terminal.join", "title": "$(combine) Join Terminal", "description": "Join terminal", "category": "Terminal" },
|
|
2303
|
+
{ "command": "workbench.action.terminal.splitInActiveWorkspace", "title": "$(split-horizontal) Split in Active Workspace", "description": "Split terminal in active workspace", "category": "Terminal" },
|
|
2304
|
+
{ "command": "workbench.action.terminal.selectAll", "title": "$(selection) Select All", "description": "Select all in terminal", "category": "Terminal" },
|
|
2305
|
+
{ "command": "workbench.action.terminal.new", "title": "$(add) New Terminal", "description": "Create new terminal", "category": "Terminal" },
|
|
2306
|
+
{ "command": "workbench.action.terminal.kill", "title": "$(trash) Kill Terminal", "description": "Kill terminal", "category": "Terminal" },
|
|
2307
|
+
{ "command": "workbench.action.terminal.killViewOrEditor", "title": "$(trash) Kill View/Editor", "description": "Kill terminal view or editor", "category": "Terminal" },
|
|
2308
|
+
{ "command": "workbench.action.terminal.killAll", "title": "$(trash) Kill All Terminals", "description": "Kill all terminals", "category": "Terminal" },
|
|
2309
|
+
{ "command": "workbench.action.terminal.killEditor", "title": "$(trash) Kill Terminal Editor", "description": "Kill terminal editor", "category": "Terminal" },
|
|
2310
|
+
{ "command": "workbench.action.terminal.killActiveTab", "title": "$(trash) Kill Active Tab", "description": "Kill active terminal tab", "category": "Terminal" },
|
|
2311
|
+
{ "command": "workbench.action.terminal.focusHover", "title": "$(hover) Focus Hover", "description": "Focus terminal hover", "category": "Terminal" },
|
|
2312
|
+
{ "command": "workbench.action.terminal.clear", "title": "$(clear-all) Clear Terminal", "description": "Clear terminal", "category": "Terminal" },
|
|
2313
|
+
{ "command": "workbench.action.terminal.selectDefaultShell", "title": "$(terminal) Select Default Shell", "description": "Select default shell", "category": "Terminal" },
|
|
2314
|
+
{ "command": "workbench.action.terminal.openSettings", "title": "$(settings-gear) Open Terminal Settings", "description": "Open terminal settings", "category": "Terminal" },
|
|
2315
|
+
{ "command": "workbench.action.terminal.setDimensions", "title": "$(screen-normal) Set Dimensions", "description": "Set terminal dimensions", "category": "Terminal" },
|
|
2316
|
+
{ "command": "workbench.action.terminal.sizeToContentWidth", "title": "$(expand-horizontal) Size to Content Width", "description": "Size terminal to content width", "category": "Terminal" },
|
|
2317
|
+
{ "command": "workbench.action.terminal.switchTerminal", "title": "$(switch) Switch Terminal", "description": "Switch between terminals", "category": "Terminal" },
|
|
2318
|
+
{ "command": "workbench.action.terminal.focusAtIndex1", "title": "$(terminal) Focus Terminal 1", "description": "Focus terminal at index 1", "category": "Terminal" },
|
|
2319
|
+
{ "command": "workbench.action.terminal.focusAtIndex2", "title": "$(terminal) Focus Terminal 2", "description": "Focus terminal at index 2", "category": "Terminal" },
|
|
2320
|
+
{ "command": "workbench.action.terminal.focusAtIndex3", "title": "$(terminal) Focus Terminal 3", "description": "Focus terminal at index 3", "category": "Terminal" },
|
|
2321
|
+
{ "command": "workbench.action.terminal.focusAtIndex4", "title": "$(terminal) Focus Terminal 4", "description": "Focus terminal at index 4", "category": "Terminal" },
|
|
2322
|
+
{ "command": "workbench.action.terminal.focusAtIndex5", "title": "$(terminal) Focus Terminal 5", "description": "Focus terminal at index 5", "category": "Terminal" },
|
|
2323
|
+
{ "command": "workbench.action.terminal.focusAtIndex6", "title": "$(terminal) Focus Terminal 6", "description": "Focus terminal at index 6", "category": "Terminal" },
|
|
2324
|
+
{ "command": "workbench.action.terminal.focusAtIndex7", "title": "$(terminal) Focus Terminal 7", "description": "Focus terminal at index 7", "category": "Terminal" },
|
|
2325
|
+
{ "command": "workbench.action.terminal.focusAtIndex8", "title": "$(terminal) Focus Terminal 8", "description": "Focus terminal at index 8", "category": "Terminal" },
|
|
2326
|
+
{ "command": "workbench.action.terminal.focusAtIndex9", "title": "$(terminal) Focus Terminal 9", "description": "Focus terminal at index 9", "category": "Terminal" },
|
|
2327
|
+
{ "command": "workbench.action.terminal.focusAccessibleBuffer", "title": "$(accessibility) Focus Accessible Buffer", "description": "Focus accessible buffer", "category": "Terminal" },
|
|
2328
|
+
{ "command": "workbench.action.terminal.accessibleBufferGoToNextCommand", "title": "$(arrow-down) Next Command in Accessible Buffer", "description": "Go to next command in accessible buffer", "category": "Terminal" },
|
|
2329
|
+
{ "command": "workbench.action.terminal.accessibleBufferGoToPreviousCommand", "title": "$(arrow-up) Previous Command in Accessible Buffer", "description": "Go to previous command in accessible buffer", "category": "Terminal" },
|
|
2330
|
+
{ "command": "workbench.action.terminal.scrollToBottomAccessibleView", "title": "$(arrow-down) Scroll to Bottom Accessible", "description": "Scroll to bottom in accessible view", "category": "Terminal" },
|
|
2331
|
+
{ "command": "workbench.action.terminal.scrollToTopAccessibleView", "title": "$(arrow-up) Scroll to Top Accessible", "description": "Scroll to top in accessible view", "category": "Terminal" },
|
|
2332
|
+
{ "command": "workbench.action.terminal.chat.addTerminalSelection", "title": "$(comment) Add Terminal Selection to Chat", "description": "Add terminal selection to chat", "category": "Terminal" },
|
|
2333
|
+
{ "command": "workbench.action.terminal.showTextureAtlas", "title": "$(preview) Show Texture Atlas", "description": "Show terminal texture atlas", "category": "Terminal" },
|
|
2334
|
+
{ "command": "workbench.action.terminal.writeDataToTerminal", "title": "$(edit) Write Data to Terminal", "description": "Write data to terminal", "category": "Terminal" },
|
|
2335
|
+
{ "command": "workbench.action.terminal.recordSession", "title": "$(record) Record Session", "description": "Record terminal session", "category": "Terminal" },
|
|
2336
|
+
{ "command": "workbench.action.terminal.restartPtyHost", "title": "$(refresh) Restart PTY Host", "description": "Restart PTY host", "category": "Terminal" },
|
|
2337
|
+
{ "command": "workbench.action.terminal.showEnvironmentContributions", "title": "$(environment) Show Environment Contributions", "description": "Show environment contributions", "category": "Terminal" },
|
|
2338
|
+
{ "command": "workbench.action.terminal.copyLastCommand", "title": "$(copy) Copy Last Command", "description": "Copy last terminal command", "category": "Terminal" },
|
|
2339
|
+
{ "command": "workbench.action.terminal.copyLastCommandOutput", "title": "$(copy) Copy Last Command Output", "description": "Copy last command output", "category": "Terminal" },
|
|
2340
|
+
{ "command": "workbench.action.terminal.copyLastCommandAndLastCommandOutput", "title": "$(copy) Copy Command & Output", "description": "Copy last command and output", "category": "Terminal" },
|
|
2341
|
+
{ "command": "workbench.action.terminal.copySelection", "title": "$(copy) Copy Selection", "description": "Copy terminal selection", "category": "Terminal" },
|
|
2342
|
+
{ "command": "workbench.action.terminal.copyAndClearSelection", "title": "$(copy) Copy and Clear Selection", "description": "Copy and clear selection", "category": "Terminal" },
|
|
2343
|
+
{ "command": "workbench.action.terminal.copySelectionAsHtml", "title": "$(copy) Copy as HTML", "description": "Copy selection as HTML", "category": "Terminal" },
|
|
2344
|
+
{ "command": "workbench.action.terminal.paste", "title": "$(paste) Paste", "description": "Paste into terminal", "category": "Terminal" },
|
|
2345
|
+
{ "command": "workbench.action.terminal.focusFind", "title": "$(search) Focus Find", "description": "Focus terminal find", "category": "Terminal" },
|
|
2346
|
+
{ "command": "workbench.action.terminal.hideFind", "title": "$(close) Hide Find", "description": "Hide terminal find", "category": "Terminal" },
|
|
2347
|
+
{ "command": "workbench.action.terminal.toggleFindRegex", "title": "$(regex) Toggle Find Regex", "description": "Toggle regex in terminal find", "category": "Terminal" },
|
|
2348
|
+
{ "command": "workbench.action.terminal.toggleFindWholeWord", "title": "$(whole-word) Toggle Find Whole Word", "description": "Toggle whole word in terminal find", "category": "Terminal" },
|
|
2349
|
+
{ "command": "workbench.action.terminal.toggleFindCaseSensitive", "title": "$(case-sensitive) Toggle Find Case Sensitive", "description": "Toggle case sensitive in terminal find", "category": "Terminal" },
|
|
2350
|
+
{ "command": "workbench.action.terminal.findNext", "title": "$(arrow-down) Find Next", "description": "Find next in terminal", "category": "Terminal" },
|
|
2351
|
+
{ "command": "workbench.action.terminal.findPrevious", "title": "$(arrow-up) Find Previous", "description": "Find previous in terminal", "category": "Terminal" },
|
|
2352
|
+
{ "command": "workbench.action.terminal.searchWorkspace", "title": "$(search) Search Workspace", "description": "Search workspace from terminal", "category": "Terminal" },
|
|
2353
|
+
{ "command": "workbench.action.terminal.chat.start", "title": "$(comment) Start Terminal Chat", "description": "Start terminal chat", "category": "Terminal" },
|
|
2354
|
+
{ "command": "workbench.action.terminal.chat.close", "title": "$(close) Close Terminal Chat", "description": "Close terminal chat", "category": "Terminal" },
|
|
2355
|
+
{ "command": "workbench.action.terminal.chat.runCommand", "title": "$(play) Run Terminal Chat Command", "description": "Run terminal chat command", "category": "Terminal" },
|
|
2356
|
+
{ "command": "workbench.action.terminal.chat.runFirstCommand", "title": "$(play) Run First Terminal Chat Command", "description": "Run first terminal chat command", "category": "Terminal" },
|
|
2357
|
+
{ "command": "workbench.action.terminal.chat.insertCommand", "title": "$(edit) Insert Terminal Chat Command", "description": "Insert terminal chat command", "category": "Terminal" },
|
|
2358
|
+
{ "command": "workbench.action.terminal.chat.insertFirstCommand", "title": "$(edit) Insert First Terminal Chat Command", "description": "Insert first terminal chat command", "category": "Terminal" },
|
|
2359
|
+
{ "command": "workbench.action.terminal.chat.rerunRequest", "title": "$(refresh) Rerun Terminal Chat Request", "description": "Rerun terminal chat request", "category": "Terminal" },
|
|
2360
|
+
{ "command": "workbench.action.terminal.chat.viewInChat", "title": "$(comment) View in Chat", "description": "View terminal in chat", "category": "Terminal" },
|
|
2361
|
+
{ "command": "workbench.action.terminal.chat.viewHiddenChatTerminals", "title": "$(eye) View Hidden Chat Terminals", "description": "View hidden chat terminals", "category": "Terminal" },
|
|
2362
|
+
{ "command": "workbench.action.terminal.chat.focusMostRecentChatTerminal", "title": "$(focus) Focus Most Recent Chat Terminal", "description": "Focus most recent chat terminal", "category": "Terminal" },
|
|
2363
|
+
{ "command": "workbench.action.terminal.chat.focusMostRecentChatTerminalOutput", "title": "$(focus) Focus Most Recent Chat Terminal Output", "description": "Focus most recent chat terminal output", "category": "Terminal" },
|
|
2364
|
+
{ "command": "workbench.action.terminal.chat.openTerminalSettingsLink", "title": "$(link-external) Open Terminal Settings Link", "description": "Open terminal settings link", "category": "Terminal" },
|
|
2365
|
+
{ "command": "workbench.action.terminal.chat.disableSessionAutoApproval", "title": "$(shield) Disable Session Auto-Approval", "description": "Disable session auto-approval", "category": "Terminal" },
|
|
2366
|
+
{ "command": "workbench.action.terminal.clearPreviousSessionHistory", "title": "$(history) Clear Previous Session History", "description": "Clear previous session history", "category": "Terminal" },
|
|
2367
|
+
{ "command": "workbench.action.terminal.goToRecentDirectory", "title": "$(folder) Go to Recent Directory", "description": "Go to recent directory", "category": "Terminal" },
|
|
2368
|
+
{ "command": "workbench.action.terminal.runRecentCommand", "title": "$(history) Run Recent Command", "description": "Run recent command", "category": "Terminal" },
|
|
2369
|
+
{ "command": "workbench.action.terminal.openDetectedLink", "title": "$(link) Open Detected Link", "description": "Open detected link", "category": "Terminal" },
|
|
2370
|
+
{ "command": "workbench.action.terminal.openUrlLink", "title": "$(globe) Open URL Link", "description": "Open URL link", "category": "Terminal" },
|
|
2371
|
+
{ "command": "workbench.action.terminal.openFileLink", "title": "$(file) Open File Link", "description": "Open file link", "category": "Terminal" },
|
|
2372
|
+
{ "command": "workbench.action.terminal.fontZoomIn", "title": "$(zoom-in) Font Zoom In", "description": "Zoom in terminal font", "category": "Terminal" },
|
|
2373
|
+
{ "command": "workbench.action.terminal.fontZoomOut", "title": "$(zoom-out) Font Zoom Out", "description": "Zoom out terminal font", "category": "Terminal" },
|
|
2374
|
+
{ "command": "workbench.action.terminal.fontZoomReset", "title": "$(zoom-reset) Font Zoom Reset", "description": "Reset terminal font zoom", "category": "Terminal" },
|
|
2375
|
+
{ "command": "workbench.action.terminal.toggleStickyScroll", "title": "$(pin) Toggle Sticky Scroll", "description": "Toggle sticky scroll", "category": "Terminal" },
|
|
2376
|
+
{ "command": "workbench.action.quickOpenNavigateNextInTerminalPicker", "title": "$(arrow-down) Next in Terminal Picker", "description": "Navigate next in terminal picker", "category": "Terminal" },
|
|
2377
|
+
{ "command": "workbench.action.quickOpenNavigatePreviousInTerminalPicker", "title": "$(arrow-up) Previous in Terminal Picker", "description": "Navigate previous in terminal picker", "category": "Terminal" },
|
|
2378
|
+
{ "command": "workbench.action.quickOpenTerm", "title": "$(terminal) Quick Open Terminal", "description": "Quick open terminal", "category": "Terminal" },
|
|
2379
|
+
{ "command": "workbench.action.terminal.showQuickFixes", "title": "$(lightbulb) Show Quick Fixes", "description": "Show quick fixes in terminal", "category": "Terminal" },
|
|
2380
|
+
{ "command": "workbench.action.terminal.sendSequence", "title": "$(keyboard) Send Sequence", "description": "Send sequence to terminal", "category": "Terminal" },
|
|
2381
|
+
{ "command": "workbench.action.terminal.sendSignal", "title": "$(signal) Send Signal", "description": "Send signal to terminal", "category": "Terminal" },
|
|
2382
|
+
{ "command": "workbench.action.terminal.configureSuggestSettings", "title": "$(settings-gear) Configure Suggest Settings", "description": "Configure suggest settings", "category": "Terminal" },
|
|
2383
|
+
{ "command": "workbench.action.terminal.suggestLearnMore", "title": "$(info) Suggest Learn More", "description": "Learn more about terminal suggestions", "category": "Terminal" },
|
|
2384
|
+
{ "command": "workbench.action.terminal.triggerSuggest", "title": "$(lightbulb) Trigger Suggest", "description": "Trigger terminal suggestions", "category": "Terminal" },
|
|
2385
|
+
{ "command": "workbench.action.terminal.resetSuggestWidgetSize", "title": "$(screen-normal) Reset Suggest Widget Size", "description": "Reset suggest widget size", "category": "Terminal" },
|
|
2386
|
+
{ "command": "workbench.action.terminal.selectPrevSuggestion", "title": "$(arrow-up) Select Previous Suggestion", "description": "Select previous suggestion", "category": "Terminal" },
|
|
2387
|
+
{ "command": "workbench.action.terminal.selectPrevPageSuggestion", "title": "$(arrow-up) Select Previous Page Suggestion", "description": "Select previous page suggestion", "category": "Terminal" },
|
|
2388
|
+
{ "command": "workbench.action.terminal.selectNextSuggestion", "title": "$(arrow-down) Select Next Suggestion", "description": "Select next suggestion", "category": "Terminal" },
|
|
2389
|
+
{ "command": "terminalSuggestToggleExplainMode", "title": "$(info) Toggle Explain Mode", "description": "Toggle explain mode for suggestions", "category": "Terminal" },
|
|
2390
|
+
{ "command": "workbench.action.terminal.suggestToggleDetailsFocus", "title": "$(focus) Toggle Details Focus", "description": "Toggle details focus for suggestions", "category": "Terminal" },
|
|
2391
|
+
{ "command": "workbench.action.terminal.suggestToggleDetails", "title": "$(info) Toggle Details", "description": "Toggle suggestion details", "category": "Terminal" },
|
|
2392
|
+
{ "command": "workbench.action.terminal.selectNextPageSuggestion", "title": "$(arrow-down) Select Next Page Suggestion", "description": "Select next page suggestion", "category": "Terminal" },
|
|
2393
|
+
{ "command": "workbench.action.terminal.acceptSelectedSuggestion", "title": "$(check) Accept Selected Suggestion", "description": "Accept selected suggestion", "category": "Terminal" },
|
|
2394
|
+
{ "command": "workbench.action.terminal.acceptSelectedSuggestionEnter", "title": "$(check) Accept Suggestion with Enter", "description": "Accept suggestion with Enter", "category": "Terminal" },
|
|
2395
|
+
{ "command": "workbench.action.terminal.hideSuggestWidget", "title": "$(eye-closed) Hide Suggest Widget", "description": "Hide suggest widget", "category": "Terminal" },
|
|
2396
|
+
{ "command": "workbench.action.terminal.hideSuggestWidgetAndNavigateHistory", "title": "$(history) Hide Widget & Navigate History", "description": "Hide widget and navigate history", "category": "Terminal" },
|
|
2397
|
+
{ "command": "workbench.action.terminal.startVoice", "title": "$(unmute) Start Voice", "description": "Start voice in terminal", "category": "Terminal" },
|
|
2398
|
+
{ "command": "workbench.action.terminal.stopVoice", "title": "$(mute) Stop Voice", "description": "Stop voice in terminal", "category": "Terminal" }
|
|
2399
|
+
];
|
|
2400
|
+
|
|
2401
|
+
|
|
2402
|
+
// Tasks
|
|
2403
|
+
const tasksCommands = [
|
|
2404
|
+
{ "command": "workbench.action.tasks.manageAutomaticRunning", "title": "Manage Automatic Running", "description": "Manage automatic task running", "category": "Tasks" },
|
|
2405
|
+
{ "command": "workbench.action.tasks.rerunForActiveTerminal", "title": "Rerun for Active Terminal", "description": "Rerun task for active terminal", "category": "Tasks" },
|
|
2406
|
+
{ "command": "runCommands", "title": "Run Commands", "description": "Run multiple commands", "category": "Tasks" },
|
|
2407
|
+
{ "command": "workbench.action.tasks.manageAutomaticRunning", "title": "$(zap) Manage Automatic Running", "description": "Manage automatic task running", "category": "Tasks" },
|
|
2408
|
+
{ "command": "workbench.action.tasks.rerunForActiveTerminal", "title": "$(refresh) Rerun for Active Terminal", "description": "Rerun task for active terminal", "category": "Tasks" },
|
|
2409
|
+
{ "command": "runCommands", "title": "$(play) Run Commands", "description": "Run commands", "category": "Tasks" }
|
|
2410
|
+
];
|
|
2411
|
+
// Workbench Actions & Settings - PART 1 (first 50)
|
|
2412
|
+
const workbenchActionsCommands1 = [
|
|
2413
|
+
{ "command": "workbench.action.inspectKeyMappings", "title": "$(search) Inspect Key Mappings", "description": "Inspect key mappings", "category": "Workbench" },
|
|
2414
|
+
{ "command": "workbench.action.inspectKeyMappingsJSON", "title": "$(json) Inspect Key Mappings JSON", "description": "Inspect key mappings as JSON", "category": "Workbench" },
|
|
2415
|
+
{ "command": "workbench.action.gotoLine", "title": "$(go-to-line) Go to Line", "description": "Go to specific line", "category": "Workbench" },
|
|
2416
|
+
{ "command": "workbench.action.gotoOffset", "title": "$(go-to-file) Go to Offset", "description": "Go to specific offset", "category": "Workbench" },
|
|
2417
|
+
{ "command": "workbench.action.toggleMultiCursorModifier", "title": "$(multiple-windows) Toggle Multi-cursor Modifier", "description": "Toggle multi-cursor modifier", "category": "Workbench" },
|
|
2418
|
+
{ "command": "workbench.action.toggleKeybindingsLog", "title": "$(keyboard) Toggle Keybindings Log", "description": "Toggle keybindings logging", "category": "Workbench" },
|
|
2419
|
+
{ "command": "workbench.action.populateFileFromSnippet", "title": "$(snippet) Populate File from Snippet", "description": "Populate file from snippet", "category": "Workbench" },
|
|
2420
|
+
{ "command": "workbench.action.openSnippets", "title": "$(folder-opened) Open Snippets", "description": "Open snippets", "category": "Workbench" },
|
|
2421
|
+
{ "command": "editor.action.formatDocument.none", "title": "$(format) Format Document (None)", "description": "Format document with no formatter", "category": "Workbench" },
|
|
2422
|
+
{ "command": "workbench.action.selectTheme", "title": "$(color-mode) Select Theme", "description": "Select color theme", "category": "Workbench" },
|
|
2423
|
+
{ "command": "workbench.action.selectIconTheme", "title": "$(symbol-color) Select Icon Theme", "description": "Select icon theme", "category": "Workbench" },
|
|
2424
|
+
{ "command": "workbench.action.selectProductIconTheme", "title": "$(product) Select Product Icon Theme", "description": "Select product icon theme", "category": "Workbench" },
|
|
2425
|
+
{ "command": "workbench.action.previewColorTheme", "title": "$(preview) Preview Color Theme", "description": "Preview color theme", "category": "Workbench" },
|
|
2426
|
+
{ "command": "workbench.action.generateColorTheme", "title": "$(paintcan) Generate Color Theme", "description": "Generate color theme", "category": "Workbench" },
|
|
2427
|
+
{ "command": "workbench.action.toggleLightDarkThemes", "title": "$(color-mode) Toggle Light/Dark Themes", "description": "Toggle between light and dark themes", "category": "Workbench" },
|
|
2428
|
+
{ "command": "workbench.action.browseColorThemesInMarketplace", "title": "$(extensions) Browse Themes in Marketplace", "description": "Browse themes in marketplace", "category": "Workbench" },
|
|
2429
|
+
{ "command": "update.showCurrentReleaseNotes", "title": "$(note) Show Current Release Notes", "description": "Show current release notes", "category": "Workbench" },
|
|
2430
|
+
{ "command": "developer.showCurrentFileAsReleaseNotes", "title": "$(file) Show File as Release Notes", "description": "Show current file as release notes", "category": "Workbench" },
|
|
2431
|
+
{ "command": "workbench.action.download", "title": "$(cloud-download) Download", "description": "Download", "category": "Workbench" },
|
|
2432
|
+
{ "command": "update.checkForUpdate", "title": "$(refresh) Check for Update", "description": "Check for updates", "category": "Workbench" },
|
|
2433
|
+
{ "command": "update.downloadUpdate", "title": "$(cloud-download) Download Update", "description": "Download update", "category": "Workbench" },
|
|
2434
|
+
{ "command": "update.installUpdate", "title": "$(install) Install Update", "description": "Install update", "category": "Workbench" },
|
|
2435
|
+
{ "command": "update.restartToUpdate", "title": "$(refresh) Restart to Update", "description": "Restart to apply update", "category": "Workbench" },
|
|
2436
|
+
{ "command": "workbench.action.openWalkthrough", "title": "$(book) Open Walkthrough", "description": "Open walkthrough", "category": "Workbench" },
|
|
2437
|
+
{ "command": "welcome.goBack", "title": "$(arrow-left) Welcome Go Back", "description": "Go back in welcome", "category": "Workbench" },
|
|
2438
|
+
{ "command": "walkthroughs.selectStep", "title": "$(check) Select Walkthrough Step", "description": "Select walkthrough step", "category": "Workbench" },
|
|
2439
|
+
{ "command": "welcome.markStepComplete", "title": "$(check) Mark Step Complete", "description": "Mark step as complete", "category": "Workbench" },
|
|
2440
|
+
{ "command": "welcome.markStepIncomplete", "title": "$(circle) Mark Step Incomplete", "description": "Mark step as incomplete", "category": "Workbench" },
|
|
2441
|
+
{ "command": "welcome.showAllWalkthroughs", "title": "$(list-unordered) Show All Walkthroughs", "description": "Show all walkthroughs", "category": "Workbench" },
|
|
2442
|
+
{ "command": "welcome.newWorkspaceChat", "title": "$(comment) New Workspace Chat", "description": "New workspace chat", "category": "Workbench" },
|
|
2443
|
+
{ "command": "workbench.action.showInteractivePlayground", "title": "$(play) Show Interactive Playground", "description": "Show interactive playground", "category": "Workbench" },
|
|
2444
|
+
{ "command": "workbench.action.interactivePlayground.arrowUp", "title": "$(arrow-up) Interactive Playground Up", "description": "Arrow up in interactive playground", "category": "Workbench" },
|
|
2445
|
+
{ "command": "workbench.action.interactivePlayground.arrowDown", "title": "$(arrow-down) Interactive Playground Down", "description": "Arrow down in interactive playground", "category": "Workbench" },
|
|
2446
|
+
{ "command": "workbench.action.interactivePlayground.pageUp", "title": "$(arrow-up) Interactive Playground Page Up", "description": "Page up in interactive playground", "category": "Workbench" },
|
|
2447
|
+
{ "command": "workbench.action.interactivePlayground.pageDown", "title": "$(arrow-down) Interactive Playground Page Down", "description": "Page down in interactive playground", "category": "Workbench" },
|
|
2448
|
+
{ "command": "welcome.showNewFileEntries", "title": "$(new-file) Show New File Entries", "description": "Show new file entries", "category": "Workbench" },
|
|
2449
|
+
{ "command": "workbench.getCodeExchangeProxyEndpoints", "title": "$(server) Get Code Exchange Proxy", "description": "Get code exchange proxy endpoints", "category": "Workbench" },
|
|
2450
|
+
{ "command": "workbench.profiles.actions.createTemporaryProfile", "title": "$(person) Create Temporary Profile", "description": "Create temporary profile", "category": "Workbench" },
|
|
2451
|
+
{ "command": "workbench.profiles.actions.cleanupProfiles", "title": "$(trash) Cleanup Profiles", "description": "Cleanup profiles", "category": "Workbench" },
|
|
2452
|
+
{ "command": "workbench.profiles.actions.resetWorkspaces", "title": "$(refresh) Reset Workspaces", "description": "Reset workspaces", "category": "Workbench" },
|
|
2453
|
+
{ "command": "workbench.action.continueOn.extensions", "title": "$(extensions) Continue on Extensions", "description": "Continue on extensions", "category": "Workbench" },
|
|
2454
|
+
{ "command": "files.openTimeline", "title": "$(history) Open Timeline", "description": "Open timeline", "category": "Workbench" },
|
|
2455
|
+
{ "command": "workbench.action.localHistory.compareWithFile", "title": "$(diff) Compare with File", "description": "Compare with file in local history", "category": "Workbench" },
|
|
2456
|
+
{ "command": "workbench.action.localHistory.compareWithPrevious", "title": "$(diff) Compare with Previous", "description": "Compare with previous in local history", "category": "Workbench" },
|
|
2457
|
+
{ "command": "workbench.action.localHistory.selectForCompare", "title": "$(selection) Select for Compare", "description": "Select for compare in local history", "category": "Workbench" },
|
|
2458
|
+
{ "command": "workbench.action.localHistory.compareWithSelected", "title": "$(diff) Compare with Selected", "description": "Compare with selected in local history", "category": "Workbench" },
|
|
2459
|
+
{ "command": "workbench.action.localHistory.open", "title": "$(folder-opened) Open Local History", "description": "Open local history", "category": "Workbench" },
|
|
2460
|
+
{ "command": "workbench.action.localHistory.restoreViaEditor", "title": "$(undo) Restore via Editor", "description": "Restore via editor in local history", "category": "Workbench" },
|
|
2461
|
+
{ "command": "workbench.action.localHistory.restore", "title": "$(undo) Restore", "description": "Restore from local history", "category": "Workbench" },
|
|
2462
|
+
{ "command": "workbench.action.localHistory.restoreViaPicker", "title": "$(undo) Restore via Picker", "description": "Restore via picker in local history", "category": "Workbench" }
|
|
2463
|
+
];
|
|
2464
|
+
|
|
2465
|
+
// Workbench Actions & Settings - PART 2 (next 50)
|
|
2466
|
+
const workbenchActionsCommands2 = [
|
|
2467
|
+
{ "command": "workbench.action.localHistory.rename", "title": "$(edit) Rename Local History", "description": "Rename local history", "category": "Workbench" },
|
|
2468
|
+
{ "command": "workbench.action.localHistory.delete", "title": "$(trash) Delete Local History", "description": "Delete local history", "category": "Workbench" },
|
|
2469
|
+
{ "command": "workbench.action.localHistory.deleteAll", "title": "$(trash) Delete All Local History", "description": "Delete all local history", "category": "Workbench" },
|
|
2470
|
+
{ "command": "workbench.action.localHistory.create", "title": "$(add) Create Local History", "description": "Create local history", "category": "Workbench" },
|
|
2471
|
+
{ "command": "workbench.trust.configure", "title": "$(shield) Configure Trust", "description": "Configure trust settings", "category": "Workbench" },
|
|
2472
|
+
{ "command": "workbench.trust.manage", "title": "$(shield) Manage Trust", "description": "Manage trust", "category": "Workbench" },
|
|
2473
|
+
{ "command": "workbench.action.openWorkspaceFromEditor", "title": "$(folder-opened) Open Workspace from Editor", "description": "Open workspace from editor", "category": "Workbench" },
|
|
2474
|
+
{ "command": "list.resizeColumn", "title": "$(screen-normal) Resize Column", "description": "Resize list column", "category": "Workbench" },
|
|
2475
|
+
{ "command": "signals.sounds.help", "title": "$(unmute) Sounds Help", "description": "Help for sounds", "category": "Workbench" },
|
|
2476
|
+
{ "command": "accessibility.announcement.help", "title": "$(accessibility) Announcement Help", "description": "Help for accessibility announcements", "category": "Workbench" },
|
|
2477
|
+
{ "command": "toggle.workbench.experimental.share.enabled", "title": "$(share) Toggle Share Experimental", "description": "Toggle experimental sharing", "category": "Workbench" },
|
|
2478
|
+
{ "command": "workbench.action.zoomIn", "title": "$(zoom-in) Zoom In", "description": "Zoom in workbench", "category": "Workbench" },
|
|
2479
|
+
{ "command": "workbench.action.zoomOut", "title": "$(zoom-out) Zoom Out", "description": "Zoom out workbench", "category": "Workbench" },
|
|
2480
|
+
{ "command": "workbench.action.zoomReset", "title": "$(zoom-reset) Zoom Reset", "description": "Reset workbench zoom", "category": "Workbench" },
|
|
2481
|
+
{ "command": "workbench.action.switchWindow", "title": "$(multiple-windows) Switch Window", "description": "Switch between windows", "category": "Workbench" },
|
|
2482
|
+
{ "command": "workbench.action.quickSwitchWindow", "title": "$(multiple-windows) Quick Switch Window", "description": "Quick switch window", "category": "Workbench" },
|
|
2483
|
+
{ "command": "workbench.action.closeWindow", "title": "$(close) Close Window", "description": "Close current window", "category": "Workbench" },
|
|
2484
|
+
{ "command": "workbench.action.closeOtherWindows", "title": "$(close-all) Close Other Windows", "description": "Close other windows", "category": "Workbench" },
|
|
2485
|
+
{ "command": "workbench.action.toggleWindowAlwaysOnTop", "title": "$(pin) Toggle Always on Top", "description": "Toggle window always on top", "category": "Workbench" },
|
|
2486
|
+
{ "command": "workbench.action.enableWindowAlwaysOnTop", "title": "$(pin) Enable Always on Top", "description": "Enable window always on top", "category": "Workbench" },
|
|
2487
|
+
{ "command": "workbench.action.disableWindowAlwaysOnTop", "title": "$(unpin) Disable Always on Top", "description": "Disable window always on top", "category": "Workbench" },
|
|
2488
|
+
{ "command": "workbench.action.quit", "title": "$(close) Quit", "description": "Quit application", "category": "Workbench" },
|
|
2489
|
+
{ "command": "workbench.action.reloadWindowWithExtensionsDisabled", "title": "$(refresh) Reload with Extensions Disabled", "description": "Reload window with extensions disabled", "category": "Workbench" },
|
|
2490
|
+
{ "command": "workbench.action.configureRuntimeArguments", "title": "$(settings-gear) Configure Runtime Arguments", "description": "Configure runtime arguments", "category": "Workbench" },
|
|
2491
|
+
{ "command": "workbench.action.toggleDevTools", "title": "$(tools) Toggle DevTools", "description": "Toggle developer tools", "category": "Workbench" },
|
|
2492
|
+
{ "command": "workbench.action.revealUserDataFolder", "title": "$(folder-opened) Reveal User Data Folder", "description": "Reveal user data folder", "category": "Workbench" },
|
|
2493
|
+
{ "command": "workbench.action.showGPUInfo", "title": "$(circuit-board) Show GPU Info", "description": "Show GPU information", "category": "Workbench" },
|
|
2494
|
+
{ "command": "workbench.action.showContentTracing", "title": "$(graph) Show Content Tracing", "description": "Show content tracing", "category": "Workbench" },
|
|
2495
|
+
{ "command": "workbench.action.stopTracing", "title": "$(stop) Stop Tracing", "description": "Stop tracing", "category": "Workbench" },
|
|
2496
|
+
{ "command": "editor.action.measureExtHostLatency", "title": "$(watch) Measure Extension Host Latency", "description": "Measure extension host latency", "category": "Workbench" },
|
|
2497
|
+
{ "command": "workbench.action.restartExtensionHost", "title": "$(refresh) Restart Extension Host", "description": "Restart extension host", "category": "Workbench" },
|
|
2498
|
+
{ "command": "workbench.action.openLogsFolder", "title": "$(folder-opened) Open Logs Folder", "description": "Open logs folder", "category": "Workbench" },
|
|
2499
|
+
{ "command": "workbench.action.openExtensionLogsFolder", "title": "$(folder-opened) Open Extension Logs Folder", "description": "Open extension logs folder", "category": "Workbench" },
|
|
2500
|
+
{ "command": "revealFileInOS", "title": "$(file) Reveal File in OS", "description": "Reveal file in operating system", "category": "Workbench" },
|
|
2501
|
+
{ "command": "workbench.action.files.revealActiveFileInWindows", "title": "$(file) Reveal Active File in Windows", "description": "Reveal active file in Windows", "category": "Workbench" },
|
|
2502
|
+
{ "command": "editor.action.startDebugTextMate", "title": "$(debug) Start Debug TextMate", "description": "Start debugging TextMate", "category": "Workbench" },
|
|
2503
|
+
{ "command": "workbench.extensions.action.debugExtensionHost", "title": "$(debug) Debug Extension Host", "description": "Debug extension host", "category": "Workbench" },
|
|
2504
|
+
{ "command": "workbench.extensions.action.extensionHostProfile", "title": "$(graph) Extension Host Profile", "description": "Extension host profile", "category": "Workbench" },
|
|
2505
|
+
{ "command": "workbench.extensions.action.stopExtensionHostProfile", "title": "$(stop) Stop Extension Host Profile", "description": "Stop extension host profiling", "category": "Workbench" },
|
|
2506
|
+
{ "command": "workbench.extensions.action.saveExtensionHostProfile", "title": "$(save) Save Extension Host Profile", "description": "Save extension host profile", "category": "Workbench" },
|
|
2507
|
+
{ "command": "workbench.extensions.action.openExtensionHostProfile", "title": "$(folder-opened) Open Extension Host Profile", "description": "Open extension host profile", "category": "Workbench" },
|
|
2508
|
+
{ "command": "workbench.extensions.action.devtoolsExtensionHost", "title": "$(tools) DevTools Extension Host", "description": "Open devtools for extension host", "category": "Workbench" },
|
|
2509
|
+
{ "command": "workbench.action.troubleshootIssue.start", "title": "$(bug) Start Troubleshoot Issue", "description": "Start troubleshooting issue", "category": "Workbench" },
|
|
2510
|
+
{ "command": "workbench.action.troubleshootIssue.stop", "title": "$(stop) Stop Troubleshoot Issue", "description": "Stop troubleshooting issue", "category": "Workbench" },
|
|
2511
|
+
{ "command": "workbench.action.files.openLocalFile", "title": "$(file) Open Local File", "description": "Open local file", "category": "Workbench" },
|
|
2512
|
+
{ "command": "workbench.action.files.openLocalFolder", "title": "$(folder-opened) Open Local Folder", "description": "Open local folder", "category": "Workbench" },
|
|
2513
|
+
{ "command": "workbench.action.files.saveLocalFile", "title": "$(save) Save Local File", "description": "Save local file", "category": "Workbench" },
|
|
2514
|
+
{ "command": "workbench.remote.action.closeUnusedPorts", "title": "$(plug) Close Unused Ports", "description": "Close unused remote ports", "category": "Workbench" },
|
|
2515
|
+
{ "command": "workbench.userData.actions.openSyncBackupsFolder", "title": "$(folder-opened) Open Sync Backups Folder", "description": "Open sync backups folder", "category": "Workbench" },
|
|
2516
|
+
{ "command": "workbench.userDataSync.actions.downloadSyncActivity", "title": "$(cloud-download) Download Sync Activity", "description": "Download sync activity", "category": "Workbench" },
|
|
2517
|
+
{ "command": "workbench.action.terminal.openNativeConsole", "title": "$(terminal) Open Native Console", "description": "Open native console", "category": "Workbench" }
|
|
2518
|
+
];
|
|
2519
|
+
|
|
2520
|
+
// Voice/Speech Features
|
|
2521
|
+
const voiceSpeechCommands = [
|
|
2522
|
+
{ "command": "workbench.action.chat.startVoiceChat", "title": "$(unmute) Start Voice Chat", "description": "Start voice chat", "category": "Voice/Speech" },
|
|
2523
|
+
{ "command": "workbench.action.chat.voiceChatInChatView", "title": "$(comment) Voice Chat in Chat View", "description": "Voice chat in chat view", "category": "Voice/Speech" },
|
|
2524
|
+
{ "command": "workbench.action.chat.holdToVoiceChatInChatView", "title": "$(record) Hold to Voice Chat", "description": "Hold to voice chat in chat view", "category": "Voice/Speech" },
|
|
2525
|
+
{ "command": "workbench.action.chat.quickVoiceChat", "title": "$(zap) Quick Voice Chat", "description": "Quick voice chat", "category": "Voice/Speech" },
|
|
2526
|
+
{ "command": "workbench.action.chat.inlineVoiceChat", "title": "$(edit) Inline Voice Chat", "description": "Inline voice chat", "category": "Voice/Speech" },
|
|
2527
|
+
{ "command": "workbench.action.chat.stopListening", "title": "$(mute) Stop Listening", "description": "Stop voice listening", "category": "Voice/Speech" },
|
|
2528
|
+
{ "command": "workbench.action.chat.stopListeningAndSubmit", "title": "$(mute) Stop Listening and Submit", "description": "Stop listening and submit", "category": "Voice/Speech" },
|
|
2529
|
+
{ "command": "workbench.action.chat.readChatResponseAloud", "title": "$(unmute) Read Chat Response Aloud", "description": "Read chat response aloud", "category": "Voice/Speech" },
|
|
2530
|
+
{ "command": "workbench.action.chat.stopReadChatItemAloud", "title": "$(mute) Stop Reading Chat Aloud", "description": "Stop reading chat item aloud", "category": "Voice/Speech" },
|
|
2531
|
+
{ "command": "workbench.action.speech.stopReadAloud", "title": "$(mute) Stop Read Aloud", "description": "Stop read aloud", "category": "Voice/Speech" },
|
|
2532
|
+
{ "command": "workbench.action.chat.openStorageFolder", "title": "$(folder-opened) Open Chat Storage Folder", "description": "Open chat storage folder", "category": "Voice/Speech" },
|
|
2533
|
+
{ "command": "inlineChat.holdForSpeech", "title": "$(record) Hold for Speech", "description": "Hold for speech in inline chat", "category": "Voice/Speech" }
|
|
2534
|
+
];
|
|
2535
|
+
|
|
2536
|
+
|
|
2537
|
+
|
|
2538
|
+
// View Container Management
|
|
2539
|
+
const viewContainerCommands = [
|
|
2540
|
+
{ "command": "workbench.viewContainer.agentSessions.resetViewContainerLocation", "title": "Reset Agent Sessions View Container Location", "description": "Reset agent sessions view container location", "category": "View Container Management" },
|
|
2541
|
+
{ "command": "workbench.viewContainer.agentSessions.resetViewContainerLocation", "title": "$(location) Reset Agent Sessions Location", "description": "Reset agent sessions view container location", "category": "View Container" },
|
|
2542
|
+
{ "command": "workbench.panel.chat.resetViewContainerLocation", "title": "$(location) Reset Chat Panel Location", "description": "Reset chat panel view container location", "category": "View Container" },
|
|
2543
|
+
{ "command": "workbench.view.extensions.resetViewContainerLocation", "title": "$(location) Reset Extensions View Location", "description": "Reset extensions view container location", "category": "View Container" },
|
|
2544
|
+
{ "command": "workbench.view.extension.test.resetViewContainerLocation", "title": "$(location) Reset Test Extension Location", "description": "Reset test extension view container location", "category": "View Container" },
|
|
2545
|
+
{ "command": "workbench.view.explorer.resetViewContainerLocation", "title": "$(location) Reset Explorer Location", "description": "Reset explorer view container location", "category": "View Container" },
|
|
2546
|
+
{ "command": "workbench.view.search.resetViewContainerLocation", "title": "$(location) Reset Search Location", "description": "Reset search view container location", "category": "View Container" },
|
|
2547
|
+
{ "command": "workbench.view.scm.resetViewContainerLocation", "title": "$(location) Reset SCM Location", "description": "Reset SCM view container location", "category": "View Container" },
|
|
2548
|
+
{ "command": "workbench.view.debug.resetViewContainerLocation", "title": "$(location) Reset Debug Location", "description": "Reset debug view container location", "category": "View Container" },
|
|
2549
|
+
{ "command": "workbench.view.remote.resetViewContainerLocation", "title": "$(location) Reset Remote Location", "description": "Reset remote view container location", "category": "View Container" },
|
|
2550
|
+
{ "command": "workbench.panel.testResults.resetViewContainerLocation", "title": "$(location) Reset Test Results Location", "description": "Reset test results view container location", "category": "View Container" },
|
|
2551
|
+
{ "command": "refactorPreview.resetViewContainerLocation", "title": "$(location) Reset Refactor Preview Location", "description": "Reset refactor preview view container location", "category": "View Container" },
|
|
2552
|
+
{ "command": "workbench.panel.repl.resetViewContainerLocation", "title": "$(location) Reset REPL Location", "description": "Reset REPL view container location", "category": "View Container" },
|
|
2553
|
+
{ "command": "workbench.panel.markers.resetViewContainerLocation", "title": "$(location) Reset Markers Location", "description": "Reset markers view container location", "category": "View Container" },
|
|
2554
|
+
{ "command": "workbench.panel.output.resetViewContainerLocation", "title": "$(location) Reset Output Location", "description": "Reset output view container location", "category": "View Container" },
|
|
2555
|
+
{ "command": "terminal.resetViewContainerLocation", "title": "$(location) Reset Terminal Location", "description": "Reset terminal view container location", "category": "View Container" },
|
|
2556
|
+
{ "command": "workbench.panel.chat.resetViewContainerLocation", "title": "Reset Chat Panel View Container Location", "description": "Reset chat panel view container location", "category": "View Container Management" },
|
|
2557
|
+
{ "command": "workbench.view.extensions.resetViewContainerLocation", "title": "Reset Extensions View Container Location", "description": "Reset extensions view container location", "category": "View Container Management" },
|
|
2558
|
+
{ "command": "workbench.view.extension.test.resetViewContainerLocation", "title": "Reset Test Extension View Container Location", "description": "Reset test extension view container location", "category": "View Container Management" },
|
|
2559
|
+
{ "command": "workbench.view.explorer.resetViewContainerLocation", "title": "Reset Explorer View Container Location", "description": "Reset explorer view container location", "category": "View Container Management" },
|
|
2560
|
+
{ "command": "workbench.view.search.resetViewContainerLocation", "title": "Reset Search View Container Location", "description": "Reset search view container location", "category": "View Container Management" },
|
|
2561
|
+
{ "command": "workbench.view.scm.resetViewContainerLocation", "title": "Reset SCM View Container Location", "description": "Reset SCM view container location", "category": "View Container Management" },
|
|
2562
|
+
{ "command": "workbench.view.debug.resetViewContainerLocation", "title": "Reset Debug View Container Location", "description": "Reset debug view container location", "category": "View Container Management" },
|
|
2563
|
+
{ "command": "workbench.view.remote.resetViewContainerLocation", "title": "Reset Remote View Container Location", "description": "Reset remote view container location", "category": "View Container Management" },
|
|
2564
|
+
{ "command": "workbench.panel.testResults.resetViewContainerLocation", "title": "Reset Test Results Panel View Container Location", "description": "Reset test results panel view container location", "category": "View Container Management" },
|
|
2565
|
+
{ "command": "refactorPreview.resetViewContainerLocation", "title": "Reset Refactor Preview View Container Location", "description": "Reset refactor preview view container location", "category": "View Container Management" },
|
|
2566
|
+
{ "command": "workbench.panel.repl.resetViewContainerLocation", "title": "Reset REPL Panel View Container Location", "description": "Reset REPL panel view container location", "category": "View Container Management" },
|
|
2567
|
+
{ "command": "workbench.panel.markers.resetViewContainerLocation", "title": "Reset Markers Panel View Container Location", "description": "Reset markers panel view container location", "category": "View Container Management" },
|
|
2568
|
+
{ "command": "workbench.panel.output.resetViewContainerLocation", "title": "Reset Output Panel View Container Location", "description": "Reset output panel view container location", "category": "View Container Management" },
|
|
2569
|
+
{ "command": "terminal.resetViewContainerLocation", "title": "Reset Terminal View Container Location", "description": "Reset terminal view container location", "category": "View Container Management" }
|
|
2570
|
+
];
|
|
2571
|
+
|
|
2572
|
+
const vscodeCommands = [
|
|
2573
|
+
...chatCommands,
|
|
2574
|
+
...extensionCommands,
|
|
2575
|
+
...dictationCommands,
|
|
2576
|
+
...viewCommands,
|
|
2577
|
+
...debugCommands,
|
|
2578
|
+
...helpCommands,
|
|
2579
|
+
...panelCommands,
|
|
2580
|
+
...auxiliaryBarCommands,
|
|
2581
|
+
...layoutCommands,
|
|
2582
|
+
...listCommands,
|
|
2583
|
+
...workbenchNavigationCommands,
|
|
2584
|
+
...windowCommands,
|
|
2585
|
+
...fileFolderCommands,
|
|
2586
|
+
...quickOpenCommands,
|
|
2587
|
+
...editorManagementCommands,
|
|
2588
|
+
...editorGroupCommands,
|
|
2589
|
+
...editorLayoutCommands,
|
|
2590
|
+
...windowEditorMovementCommands,
|
|
2591
|
+
...compareEditorCommands,
|
|
2592
|
+
...editorTabCommands,
|
|
2593
|
+
...breadcrumbCommands,
|
|
2594
|
+
...auxiliaryWindowCommands,
|
|
2595
|
+
...sidebarCommands,
|
|
2596
|
+
...bannerStatusCommands,
|
|
2597
|
+
...menuCommands,
|
|
2598
|
+
...searchNavigationCommands,
|
|
2599
|
+
...uiToggleCommands,
|
|
2600
|
+
...undoRedoCommands,
|
|
2601
|
+
...selectionCommands,
|
|
2602
|
+
...cursorCommands,
|
|
2603
|
+
...scrollCommands,
|
|
2604
|
+
...editingCommands,
|
|
2605
|
+
...clipboardCommands,
|
|
2606
|
+
...findReplaceCommands,
|
|
2607
|
+
...codeActionCommands,
|
|
2608
|
+
...navigationCommands,
|
|
2609
|
+
...commentCommands,
|
|
2610
|
+
...colorCommands,
|
|
2611
|
+
...historyCommands,
|
|
2612
|
+
...foldingCommands,
|
|
2613
|
+
...zoomCommands,
|
|
2614
|
+
...formattingCommands,
|
|
2615
|
+
...lineCommands,
|
|
2616
|
+
...textTransformCommands,
|
|
2617
|
+
...snippetCommands,
|
|
2618
|
+
...renameCommands,
|
|
2619
|
+
...suggestionCommands,
|
|
2620
|
+
...inlineSuggestionCommands,
|
|
2621
|
+
...hoverCommands,
|
|
2622
|
+
...indentationCommands,
|
|
2623
|
+
...inPlaceReplaceCommands,
|
|
2624
|
+
...multiCursorCommands,
|
|
2625
|
+
...parameterHintCommands,
|
|
2626
|
+
...stickyScrollCommands,
|
|
2627
|
+
...miscEditorCommands,
|
|
2628
|
+
...unicodeCommands,
|
|
2629
|
+
...wordHighlightCommands,
|
|
2630
|
+
...widgetNavigationCommands,
|
|
2631
|
+
...accessibilityCommands,
|
|
2632
|
+
...textMateCommands,
|
|
2633
|
+
...wordWrapCommands,
|
|
2634
|
+
...testCommands,
|
|
2635
|
+
...diffEditorCommands,
|
|
2636
|
+
...contextMenuCommands,
|
|
2637
|
+
...settingsCommands,
|
|
2638
|
+
...extensionCommands,
|
|
2639
|
+
...debugCommands,
|
|
2640
|
+
...problemsPanelCommands,
|
|
2641
|
+
...mergeEditorCommands,
|
|
2642
|
+
...multiDiffEditorCommands,
|
|
2643
|
+
...urlWebCommands,
|
|
2644
|
+
...iconSelectBoxCommands,
|
|
2645
|
+
...terminalCommands,
|
|
2646
|
+
...tasksCommands,
|
|
2647
|
+
...workbenchCommands,
|
|
2648
|
+
...voiceCommands,
|
|
2649
|
+
...viewContainerCommands,
|
|
2650
|
+
...viewOpeningCommands,
|
|
2651
|
+
...titleBarCommands,
|
|
2652
|
+
...settingsCommands,
|
|
2653
|
+
...keybindingsCommands,
|
|
2654
|
+
...activityBarCommands,
|
|
2655
|
+
...chatCommands,
|
|
2656
|
+
...profileCommands,
|
|
2657
|
+
...notificationCommands,
|
|
2658
|
+
...explorerCommands,
|
|
2659
|
+
...thirdPartyExtensionCommands,
|
|
2660
|
+
...viewToggleCommands,
|
|
2661
|
+
...thirdPartyExtensionActions,
|
|
2662
|
+
...workbenchTasksCommands,
|
|
2663
|
+
...markersPanelCommands,
|
|
2664
|
+
...replPanelCommands,
|
|
2665
|
+
...terminalProfileCommands,
|
|
2666
|
+
...inlineSuggestCommands,
|
|
2667
|
+
...telemetryCommands,
|
|
2668
|
+
...settingsJsonCommands,
|
|
2669
|
+
...accountsCommands,
|
|
2670
|
+
...chatHideCommands,
|
|
2671
|
+
...typescriptCommands,
|
|
2672
|
+
...settingsmenu,
|
|
2673
|
+
...searchCommands,
|
|
2674
|
+
...diffSourceControlCommands,
|
|
2675
|
+
...commentsCommands,
|
|
2676
|
+
...webviewCommands,
|
|
2677
|
+
...editorSettingsCommands,
|
|
2678
|
+
...languageFeaturesCommands,
|
|
2679
|
+
...hierarchyNavigationCommands,
|
|
2680
|
+
...outlineViewCommands,
|
|
2681
|
+
...emmetCommands,
|
|
2682
|
+
...scmVersionControlCommands,
|
|
2683
|
+
...terminalWorkbenchCommands1,
|
|
2684
|
+
...workbenchActionsCommands1,
|
|
2685
|
+
...workbenchActionsCommands2,
|
|
2686
|
+
...voiceSpeechCommands,
|
|
2687
|
+
];
|
|
2688
|
+
|
|
2689
|
+
export default function VSCodeCommandsReference() {
|
|
2690
|
+
const [selectedCommand, setSelectedCommand] = useState(null)
|
|
2691
|
+
const [selectedCategory, setSelectedCategory] = useState(null)
|
|
2692
|
+
|
|
2693
|
+
const fuse = useMemo(() => {
|
|
2694
|
+
return new Fuse(vscodeCommands, {
|
|
2695
|
+
keys: ["title", "command", "description", "category"],
|
|
2696
|
+
threshold: 0.3,
|
|
2697
|
+
includeScore: true,
|
|
2698
|
+
})
|
|
2699
|
+
}, [])
|
|
2700
|
+
|
|
2701
|
+
const categoryFuse = useMemo(() => {
|
|
2702
|
+
const categories = [...new Set(vscodeCommands.map(cmd => cmd.category))]
|
|
2703
|
+
return new Fuse(categories.map(cat => ({ name: cat })), {
|
|
2704
|
+
keys: ["name"],
|
|
2705
|
+
threshold: 0.4,
|
|
2706
|
+
})
|
|
2707
|
+
}, [])
|
|
2708
|
+
|
|
2709
|
+
const searchCommands = (query) => {
|
|
2710
|
+
if (!query) return vscodeCommands
|
|
2711
|
+
return fuse.search(query).map(result => result.item)
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2714
|
+
const searchCategories = (query) => {
|
|
2715
|
+
if (!query) return []
|
|
2716
|
+
return categoryFuse.search(query).slice(0, 5).map(result => result.item.name)
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2719
|
+
const groupedCommands = useMemo(() => {
|
|
2720
|
+
const groups = {}
|
|
2721
|
+
vscodeCommands.forEach(cmd => {
|
|
2722
|
+
if (!groups[cmd.category]) {
|
|
2723
|
+
groups[cmd.category] = []
|
|
2724
|
+
}
|
|
2725
|
+
groups[cmd.category].push(cmd)
|
|
2726
|
+
})
|
|
2727
|
+
return groups
|
|
2728
|
+
}, [])
|
|
2729
|
+
|
|
2730
|
+
const allCategories = useMemo(() => {
|
|
2731
|
+
return Object.keys(groupedCommands).sort()
|
|
2732
|
+
}, [groupedCommands])
|
|
2733
|
+
|
|
2734
|
+
return (
|
|
2735
|
+
<div className="min-h-screen bg-gradient-to-b from-background to-muted/20">
|
|
2736
|
+
<div className="container mx-auto px-4 py-16">
|
|
2737
|
+
<div className="max-w-3xl mx-auto space-y-12">
|
|
2738
|
+
<div className="text-center space-y-4">
|
|
2739
|
+
<h1 className="text-5xl font-bold tracking-tight">VSCode Commands</h1>
|
|
2740
|
+
<p className="text-xl text-muted-foreground">Search through all available VSCode commands</p>
|
|
2741
|
+
</div>
|
|
2742
|
+
|
|
2743
|
+
<TooltipProvider>
|
|
2744
|
+
<MotionSearchBar
|
|
2745
|
+
onValueChange={(value) => {
|
|
2746
|
+
const cmd = vscodeCommands.find(c => c.command === value)
|
|
2747
|
+
if (cmd) {
|
|
2748
|
+
setSelectedCommand(cmd)
|
|
2749
|
+
setSelectedCategory(null)
|
|
2750
|
+
}
|
|
2751
|
+
}}
|
|
2752
|
+
className="shadow-2xl"
|
|
2753
|
+
>
|
|
2754
|
+
<MotionSearchBarInput
|
|
2755
|
+
placeholder="Search commands or categories..."
|
|
2756
|
+
className="h-14 text-lg"
|
|
2757
|
+
/>
|
|
2758
|
+
<MotionSearchBarList className="max-h-[500px]">
|
|
2759
|
+
<MotionSearchBarEmpty>No results found.</MotionSearchBarEmpty>
|
|
2760
|
+
|
|
2761
|
+
<MotionSearchBarGroup heading="Categories">
|
|
2762
|
+
{topCategories.filter(cat => groupedCommands[cat]).map((category) => (
|
|
2763
|
+
<MotionSearchBarItem
|
|
2764
|
+
key={category}
|
|
2765
|
+
value={`category-${category}`}
|
|
2766
|
+
keywords={[category]}
|
|
2767
|
+
onSelect={() => {
|
|
2768
|
+
setSelectedCategory(category)
|
|
2769
|
+
setSelectedCommand(null)
|
|
2770
|
+
}}
|
|
2771
|
+
>
|
|
2772
|
+
<div className="flex items-center gap-3 flex-1">
|
|
2773
|
+
<Folder className="h-4 w-4" />
|
|
2774
|
+
<div className="flex-1">
|
|
2775
|
+
<div className="font-medium">{category}</div>
|
|
2776
|
+
<div className="text-xs text-muted-foreground">
|
|
2777
|
+
{groupedCommands[category]?.length || 0} commands
|
|
2778
|
+
</div>
|
|
2779
|
+
</div>
|
|
2780
|
+
<ChevronRight className="h-4 w-4 text-muted-foreground" />
|
|
2781
|
+
</div>
|
|
2782
|
+
</MotionSearchBarItem>
|
|
2783
|
+
))}
|
|
2784
|
+
</MotionSearchBarGroup>
|
|
2785
|
+
|
|
2786
|
+
<MotionSearchBarSeparator />
|
|
2787
|
+
|
|
2788
|
+
<MotionSearchBarGroup heading="Commands">
|
|
2789
|
+
{topCategories.slice(0, 2).map((category) => (
|
|
2790
|
+
<React.Fragment key={category}>
|
|
2791
|
+
{groupedCommands[category]?.slice(0, 3).map((cmd) => (
|
|
2792
|
+
<MotionSearchBarItem
|
|
2793
|
+
key={cmd.command}
|
|
2794
|
+
value={cmd.command}
|
|
2795
|
+
keywords={[cmd.title, cmd.description]}
|
|
2796
|
+
onSelect={() => {
|
|
2797
|
+
setSelectedCommand(cmd)
|
|
2798
|
+
setSelectedCategory(null)
|
|
2799
|
+
}}
|
|
2800
|
+
>
|
|
2801
|
+
<div className="flex items-center gap-3 flex-1">
|
|
2802
|
+
{categoryIcons[category]}
|
|
2803
|
+
<div className="flex-1 min-w-0">
|
|
2804
|
+
<div className="font-medium">{cmd.title}</div>
|
|
2805
|
+
<div className="text-xs text-muted-foreground truncate">{cmd.description}</div>
|
|
2806
|
+
</div>
|
|
2807
|
+
<CopyText code={cmd.command} ttText="Copy command" />
|
|
2808
|
+
</div>
|
|
2809
|
+
</MotionSearchBarItem>
|
|
2810
|
+
))}
|
|
2811
|
+
</React.Fragment>
|
|
2812
|
+
))}
|
|
2813
|
+
</MotionSearchBarGroup>
|
|
2814
|
+
</MotionSearchBarList>
|
|
2815
|
+
</MotionSearchBar>
|
|
2816
|
+
|
|
2817
|
+
{selectedCommand && (
|
|
2818
|
+
<motion.div
|
|
2819
|
+
initial={{ opacity: 0, y: 20 }}
|
|
2820
|
+
animate={{ opacity: 1, y: 0 }}
|
|
2821
|
+
className="p-6 border rounded-lg bg-card shadow-lg space-y-4"
|
|
2822
|
+
>
|
|
2823
|
+
<div className="flex items-start gap-3">
|
|
2824
|
+
{categoryIcons[selectedCommand.category]}
|
|
2825
|
+
<div className="flex-1 space-y-2">
|
|
2826
|
+
<div className="flex items-start justify-between gap-4">
|
|
2827
|
+
<h3 className="text-2xl font-semibold">{selectedCommand.title}</h3>
|
|
2828
|
+
<CopyText code={selectedCommand.command} ttText="Copy command" />
|
|
2829
|
+
</div>
|
|
2830
|
+
<p className="text-muted-foreground">{selectedCommand.description}</p>
|
|
2831
|
+
<div className="flex flex-wrap gap-2 pt-2">
|
|
2832
|
+
<span className="inline-flex items-center px-3 py-1 rounded-full text-xs font-medium bg-primary/10 text-primary">
|
|
2833
|
+
{selectedCommand.category}
|
|
2834
|
+
</span>
|
|
2835
|
+
<code className="inline-flex items-center px-3 py-1 rounded-md text-xs font-mono bg-muted">
|
|
2836
|
+
{selectedCommand.command}
|
|
2837
|
+
</code>
|
|
2838
|
+
</div>
|
|
2839
|
+
</div>
|
|
2840
|
+
</div>
|
|
2841
|
+
</motion.div>
|
|
2842
|
+
)}
|
|
2843
|
+
|
|
2844
|
+
{selectedCategory && (
|
|
2845
|
+
<motion.div
|
|
2846
|
+
initial={{ opacity: 0, y: 20 }}
|
|
2847
|
+
animate={{ opacity: 1, y: 0 }}
|
|
2848
|
+
className="space-y-4"
|
|
2849
|
+
>
|
|
2850
|
+
<div className="flex items-center gap-3 mb-6">
|
|
2851
|
+
{categoryIcons[selectedCategory]}
|
|
2852
|
+
<h2 className="text-3xl font-bold">{selectedCategory}</h2>
|
|
2853
|
+
<span className="text-sm text-muted-foreground">
|
|
2854
|
+
{groupedCommands[selectedCategory]?.length || 0} commands
|
|
2855
|
+
</span>
|
|
2856
|
+
</div>
|
|
2857
|
+
|
|
2858
|
+
<div className="space-y-2">
|
|
2859
|
+
{groupedCommands[selectedCategory]?.map((cmd) => (
|
|
2860
|
+
<motion.div
|
|
2861
|
+
key={cmd.command}
|
|
2862
|
+
initial={{ opacity: 0, x: -20 }}
|
|
2863
|
+
animate={{ opacity: 1, x: 0 }}
|
|
2864
|
+
className="p-4 border rounded-lg bg-card hover:shadow-md transition-shadow cursor-pointer"
|
|
2865
|
+
onClick={() => {
|
|
2866
|
+
setSelectedCommand(cmd)
|
|
2867
|
+
setSelectedCategory(null)
|
|
2868
|
+
}}
|
|
2869
|
+
>
|
|
2870
|
+
<div className="flex items-start gap-3">
|
|
2871
|
+
<div className="flex-1 space-y-1">
|
|
2872
|
+
<div className="font-medium">{cmd.title}</div>
|
|
2873
|
+
<div className="text-sm text-muted-foreground">{cmd.description}</div>
|
|
2874
|
+
<code className="inline-block text-xs font-mono bg-muted px-2 py-1 rounded mt-2">
|
|
2875
|
+
{cmd.command}
|
|
2876
|
+
</code>
|
|
2877
|
+
</div>
|
|
2878
|
+
<CopyText code={cmd.command} ttText="Copy command" />
|
|
2879
|
+
</div>
|
|
2880
|
+
</motion.div>
|
|
2881
|
+
))}
|
|
2882
|
+
</div>
|
|
2883
|
+
</motion.div>
|
|
2884
|
+
)}
|
|
2885
|
+
</TooltipProvider>
|
|
2886
|
+
|
|
2887
|
+
<div className="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4 pt-8">
|
|
2888
|
+
{allCategories.map((category) => (
|
|
2889
|
+
<motion.div
|
|
2890
|
+
key={category}
|
|
2891
|
+
whileHover={{ scale: 1.02 }}
|
|
2892
|
+
className="p-4 border rounded-lg bg-card hover:shadow-md transition-shadow cursor-pointer"
|
|
2893
|
+
onClick={() => {
|
|
2894
|
+
setSelectedCategory(category)
|
|
2895
|
+
setSelectedCommand(null)
|
|
2896
|
+
}}
|
|
2897
|
+
>
|
|
2898
|
+
<div className="flex items-center gap-2 mb-2">
|
|
2899
|
+
{categoryIcons[category] || <Folder className="h-4 w-4" />}
|
|
2900
|
+
<h3 className="font-semibold text-sm">{category}</h3>
|
|
2901
|
+
</div>
|
|
2902
|
+
<p className="text-xs text-muted-foreground">{groupedCommands[category]?.length || 0} commands</p>
|
|
2903
|
+
</motion.div>
|
|
2904
|
+
))}
|
|
2905
|
+
</div>
|
|
2906
|
+
</div>
|
|
2907
|
+
</div>
|
|
2908
|
+
</div>
|
|
2909
|
+
)
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2912
|
+
/**import React, { useState, useEffect, useMemo } from "react";
|
|
2913
|
+
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, useToasted } from "~/components/catalyst-ui";
|
|
2914
|
+
import { Input } from "~/components/catalyst-ui";
|
|
2915
|
+
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "~/components/catalyst-ui";
|
|
2916
|
+
import { Button } from "~/components/catalyst-ui";
|
|
2917
|
+
import { Card, CardHeader, CardTitle, CardDescription, CardContent } from "~/components/catalyst-ui";
|
|
2918
|
+
import { Check, Copy } from "lucide-react";
|
|
2919
|
+
import Fuse from 'fuse.js';
|
|
2920
|
+
import { DEVSTACK_URL } from "~/components/shared";
|
|
2921
|
+
|
|
2922
|
+
|
|
2923
|
+
export default function VscodeCmdsCheatSheet() {
|
|
2924
|
+
const [searchQuery, setSearchQuery] = useState("");
|
|
2925
|
+
const [selectedCategory, setSelectedCategory] = useState("all");
|
|
2926
|
+
const { toast } = useToasted()
|
|
2927
|
+
|
|
2928
|
+
|
|
2929
|
+
const commandArray = [
|
|
2930
|
+
["ShortcutMenuBar.save", "ShortcutMenuBar.save"],
|
|
2931
|
+
["ShortcutMenuBar.toggleTerminal", "ShortcutMenuBar.toggleTerminal"],
|
|
2932
|
+
["ShortcutMenuBar.toggleActivityBar", "ShortcutMenuBar.toggleActivityBar"],
|
|
2933
|
+
["ShortcutMenuBar.navigateBack", "ShortcutMenuBar.navigateBack"],
|
|
2934
|
+
["ShortcutMenuBar.navigateForward", "ShortcutMenuBar.navigateForward"],
|
|
2935
|
+
["ShortcutMenuBar.toggleRenderWhitespace", "ShortcutMenuBar.toggleRenderWhitespace"],
|
|
2936
|
+
["ShortcutMenuBar.quickOpen", "ShortcutMenuBar.quickOpen"],
|
|
2937
|
+
["ShortcutMenuBar.findReplace", "ShortcutMenuBar.findReplace"],
|
|
2938
|
+
["ShortcutMenuBar.undo", "ShortcutMenuBar.undo"],
|
|
2939
|
+
["ShortcutMenuBar.redo", "ShortcutMenuBar.redo"],
|
|
2940
|
+
["ShortcutMenuBar.commentLine", "ShortcutMenuBar.commentLine"],
|
|
2941
|
+
["ShortcutMenuBar.saveAll", "ShortcutMenuBar.saveAll"],
|
|
2942
|
+
["ShortcutMenuBar.openFile", "ShortcutMenuBar.openFile"],
|
|
2943
|
+
["ShortcutMenuBar.newFile", "ShortcutMenuBar.newFile"],
|
|
2944
|
+
["ShortcutMenuBar.goToDefinition", "ShortcutMenuBar.goToDefinition"],
|
|
2945
|
+
["ShortcutMenuBar.cut", "ShortcutMenuBar.cut"],
|
|
2946
|
+
["ShortcutMenuBar.copy", "ShortcutMenuBar.copy"],
|
|
2947
|
+
["ShortcutMenuBar.paste", "ShortcutMenuBar.paste"],
|
|
2948
|
+
["ShortcutMenuBar.compareWithSaved", "ShortcutMenuBar.compareWithSaved"],
|
|
2949
|
+
["ShortcutMenuBar.showCommands", "ShortcutMenuBar.showCommands"],
|
|
2950
|
+
["ShortcutMenuBar.startDebugging", "ShortcutMenuBar.startDebugging"],
|
|
2951
|
+
["ShortcutMenuBar.indentLines", "ShortcutMenuBar.indentLines"],
|
|
2952
|
+
["ShortcutMenuBar.outdentLines", "ShortcutMenuBar.outdentLines"],
|
|
2953
|
+
["ShortcutMenuBar.openSettings", "ShortcutMenuBar.openSettings"],
|
|
2954
|
+
["ShortcutMenuBar.toggleWordWrap", "ShortcutMenuBar.toggleWordWrap"],
|
|
2955
|
+
["ShortcutMenuBar.changeEncoding", "ShortcutMenuBar.changeEncoding"],
|
|
2956
|
+
["ShortcutMenuBar.powershellRestartSession", "ShortcutMenuBar.powershellRestartSession"],
|
|
2957
|
+
];
|
|
2958
|
+
|
|
2959
|
+
const iadded = [
|
|
2960
|
+
["foldLevel1", "editor.foldLevel1"],
|
|
2961
|
+
["foldLevel2", "editor.foldLevel2"],
|
|
2962
|
+
["foldLevel3", "editor.foldLevel3"],
|
|
2963
|
+
["foldLevel4", "editor.foldLevel4"],
|
|
2964
|
+
["foldLevel5", "editor.foldLevel5"],
|
|
2965
|
+
["foldLevel6", "editor.foldLevel6"],
|
|
2966
|
+
["foldLevel7", "editor.foldLevel7"],
|
|
2967
|
+
["unfoldAll", "editor.unfoldAll"],
|
|
2968
|
+
];
|
|
2969
|
+
const fileCommands = [
|
|
2970
|
+
["File.New", "File.New"],
|
|
2971
|
+
["File.Open", "File.Open"],
|
|
2972
|
+
["File.OpenFolder", "File.OpenFolder"],
|
|
2973
|
+
["File.Save", "File.Save"],
|
|
2974
|
+
["File.SaveAs", "File.SaveAs"],
|
|
2975
|
+
["File.SaveAll", "File.SaveAll"],
|
|
2976
|
+
["File.Close", "File.Close"],
|
|
2977
|
+
["File.CloseAll", "File.CloseAll"],
|
|
2978
|
+
["File.CloseFolder", "File.CloseFolder"],
|
|
2979
|
+
["File.Revert", "File.Revert"],
|
|
2980
|
+
["File.Compare", "File.Compare"],
|
|
2981
|
+
["File.Rename", "File.Rename"],
|
|
2982
|
+
["File.RevealInExplorer", "File.RevealInExplorer"],
|
|
2983
|
+
["File.ShowOpenedFileInNewWindow", "File.ShowOpenedFileInNewWindow"],
|
|
2984
|
+
["File.CopyPath", "File.CopyPath"],
|
|
2985
|
+
["File.OpenRecent", "File.OpenRecent"],
|
|
2986
|
+
];
|
|
2987
|
+
const editCommands = [
|
|
2988
|
+
["Edit.Undo", "undo"],
|
|
2989
|
+
["Edit.Redo", "redo"],
|
|
2990
|
+
["Edit.Cut", "editor.action.clipboardCutAction"],
|
|
2991
|
+
["Edit.Copy", "editor.action.clipboardCopyAction"],
|
|
2992
|
+
["Edit.Paste", "editor.action.clipboardPasteAction"],
|
|
2993
|
+
["Edit.Find", "actions.find"],
|
|
2994
|
+
["Edit.Replace", "Edit.Replace"],
|
|
2995
|
+
["Edit.FindInFiles", "Edit.FindInFiles"],
|
|
2996
|
+
["Edit.ReplaceInFiles", "Edit.ReplaceInFiles"],
|
|
2997
|
+
["Edit.CommentLine", "Edit.CommentLine"],
|
|
2998
|
+
["Edit.FormatDocument", "Edit.FormatDocument"],
|
|
2999
|
+
["Edit.FormatSelection", "Edit.FormatSelection"],
|
|
3000
|
+
["Edit.IndentLine", "Edit.IndentLine"],
|
|
3001
|
+
["Edit.OutdentLine", "Edit.OutdentLine"],
|
|
3002
|
+
["Edit.SelectAll", "Edit.SelectAll"],
|
|
3003
|
+
["Edit.DeleteLine", "Edit.DeleteLine"],
|
|
3004
|
+
["Edit.InsertLineAbove", "Edit.InsertLineAbove"],
|
|
3005
|
+
["Edit.InsertLineBelow", "Edit.InsertLineBelow"],
|
|
3006
|
+
["Edit.CursorUndo", "Edit.CursorUndo"],
|
|
3007
|
+
["Edit.CursorRedo", "Edit.CursorRedo"],
|
|
3008
|
+
["edit.MoveLineUp", "Edit.MoveLineUp"],
|
|
3009
|
+
["Edit.MoveLineDown", "Edit.MoveLineDown"],
|
|
3010
|
+
["Edit.DuplicateSelection", "Edit.DuplicateSelection"],
|
|
3011
|
+
["Edit.JoinLines", "Edit.JoinLines"],
|
|
3012
|
+
["Edit.ToggleWordWrap", "Edit.ToggleWordWrap"],
|
|
3013
|
+
["Edit.TransformToUppercase", "Edit.TransformToUppercase"],
|
|
3014
|
+
["Edit.TransformToLowercase", "Edit.TransformToLowercase"],
|
|
3015
|
+
["Edit.TransformToTitlecase", "Edit.TransformToTitlecase"],
|
|
3016
|
+
];
|
|
3017
|
+
const viewCommands = [
|
|
3018
|
+
["View.CommandPalette", "View.CommandPalette"],
|
|
3019
|
+
["View.OpenView", "View.OpenView"],
|
|
3020
|
+
["View.Search", "View.Search"],
|
|
3021
|
+
["View.SourceControl", "View.SourceControl"],
|
|
3022
|
+
["View.Run", "View.Run"],
|
|
3023
|
+
["View.Extensions", "View.Extensions"],
|
|
3024
|
+
["View.Problems", "View.Problems"],
|
|
3025
|
+
["View.Output", "View.Output"],
|
|
3026
|
+
["View.Debug", "View.Debug"],
|
|
3027
|
+
["View.Terminal", "View.Terminal"],
|
|
3028
|
+
["View.ZoomIn", "View.ZoomIn"],
|
|
3029
|
+
["View.ZoomOut", "View.ZoomOut"],
|
|
3030
|
+
["View.ZoomReset", "View.ZoomReset"],
|
|
3031
|
+
["View.ToggleSidebarVisibility", "View.ToggleSidebarVisibility"],
|
|
3032
|
+
["View.ToggleActivityBarVisibility", "View.ToggleActivityBarVisibility"],
|
|
3033
|
+
["View.ToggleStatusBarVisibility", "View.ToggleStatusBarVisibility"],
|
|
3034
|
+
["View.ToggleTabs", "View.ToggleTabs"],
|
|
3035
|
+
["View.ToggleFullScreen", "View.ToggleFullScreen"],
|
|
3036
|
+
["View.ToggleZenMode", "View.ToggleZenMode"],
|
|
3037
|
+
["View.TogglePanelPosition", "View.TogglePanelPosition"],
|
|
3038
|
+
["View.SplitEditorRight", "View.SplitEditorRight"],
|
|
3039
|
+
["View.SplitEditorDown", "View.SplitEditorDown"],
|
|
3040
|
+
["View.FocusFirstEditorGroup", "View.FocusFirstEditorGroup"],
|
|
3041
|
+
["View.FocusSecondEditorGroup", "View.FocusSecondEditorGroup"],
|
|
3042
|
+
["View.FocusThirdEditorGroup", "View.FocusThirdEditorGroup"],
|
|
3043
|
+
["View.ToggleMinimap", "View.ToggleMinimap"],
|
|
3044
|
+
["View.ToggleRenderWhitespace", "View.ToggleRenderWhitespace"],
|
|
3045
|
+
["View.ToggleBreadcrumbs", "View.ToggleBreadcrumbs"],
|
|
3046
|
+
];
|
|
3047
|
+
const navigationCommands = [
|
|
3048
|
+
["Navigation.GoToFile", "Navigation.GoToFile"],
|
|
3049
|
+
["Navigation.GoToSymbol", "Navigation.GoToSymbol"],
|
|
3050
|
+
["Navigation.GoToLine", "Navigation.GoToLine"],
|
|
3051
|
+
["Navigation.GoToDefinition", "Navigation.GoToDefinition"],
|
|
3052
|
+
["Navigation.GoToTypeDefinition", "Navigation.GoToTypeDefinition"],
|
|
3053
|
+
["Navigation.GoToImplementation", "Navigation.GoToImplementation"],
|
|
3054
|
+
["Navigation.GoToReferences", "Navigation.GoToReferences"],
|
|
3055
|
+
["Navigation.PeekDefinition", "Navigation.PeekDefinition"],
|
|
3056
|
+
["Navigation.PeekImplementation", "Navigation.PeekImplementation"],
|
|
3057
|
+
["Navigation.PeekReferences", "Navigation.PeekReferences"],
|
|
3058
|
+
["Navigation.ShowAllSymbols", "Navigation.ShowAllSymbols"],
|
|
3059
|
+
["Navigation.NavigateBack", "Navigation.NavigateBack"],
|
|
3060
|
+
["Navigation.NavigateForward", "Navigation.NavigateForward"],
|
|
3061
|
+
["Navigation.NextEditor", "Navigation.NextEditor"],
|
|
3062
|
+
["Navigation.PreviousEditor", "Navigation.PreviousEditor"],
|
|
3063
|
+
["Navigation.NextInFile", "Navigation.NextInFile"],
|
|
3064
|
+
["Navigation.PreviousInFile", "Navigation.PreviousInFile"],
|
|
3065
|
+
["Navigation.NextError", "Navigation.NextError"],
|
|
3066
|
+
["Navigation.PreviousError", "Navigation.PreviousError"],
|
|
3067
|
+
["Navigation.LastEditLocation", "Navigation.LastEditLocation"],
|
|
3068
|
+
["Navigation.SwitchEditor", "Navigation.SwitchEditor"],
|
|
3069
|
+
];
|
|
3070
|
+
const debugCommands = [
|
|
3071
|
+
["Debug.Start", "Debug.Start"],
|
|
3072
|
+
["Debug.Stop", "Debug.Stop"],
|
|
3073
|
+
["Debug.Restart", "Debug.Restart"],
|
|
3074
|
+
["Debug.Continue", "Debug.Continue"],
|
|
3075
|
+
["Debug.Pause", "Debug.Pause"],
|
|
3076
|
+
["Debug.StepOver", "Debug.StepOver"],
|
|
3077
|
+
["Debug.StepInto", "Debug.StepInto"],
|
|
3078
|
+
["Debug.StepOut", "Debug.StepOut"],
|
|
3079
|
+
["Debug.ToggleBreakpoint", "Debug.ToggleBreakpoint"],
|
|
3080
|
+
["Debug.EnableAllBreakpoints", "Debug.EnableAllBreakpoints"],
|
|
3081
|
+
["Debug.DisableAllBreakpoints", "Debug.DisableAllBreakpoints"],
|
|
3082
|
+
["Debug.RemoveAllBreakpoints", "Debug.RemoveAllBreakpoints"],
|
|
3083
|
+
["Debug.AddConditionalBreakpoint", "Debug.AddConditionalBreakpoint"],
|
|
3084
|
+
["Debug.RunToCursor", "Debug.RunToCursor"],
|
|
3085
|
+
["Debug.ShowHoverEvaluation", "Debug.ShowHoverEvaluation"],
|
|
3086
|
+
];
|
|
3087
|
+
const terminalCommands = [
|
|
3088
|
+
["terminal.New", "terminal.New"],
|
|
3089
|
+
["terminal.Split", "terminal.Split"],
|
|
3090
|
+
["terminal.Kill", "terminal.Kill"],
|
|
3091
|
+
["terminal.Clear", "terminal.Clear"],
|
|
3092
|
+
["terminal.ToggleTerminal", "terminal.ToggleTerminal"],
|
|
3093
|
+
["terminal.Rename", "terminal.Rename"],
|
|
3094
|
+
["terminal.FocusNext", "terminal.FocusNext"],
|
|
3095
|
+
["terminal.FocusPrevious", "terminal.FocusPrevious"],
|
|
3096
|
+
["terminal.SelectAll", "terminal.SelectAll"],
|
|
3097
|
+
["terminal.RunSelectedText", "terminal.RunSelectedText"],
|
|
3098
|
+
["terminal.ScrollUp", "terminal.ScrollUp"],
|
|
3099
|
+
["terminal.ScrollDown", "terminal.ScrollDown"],
|
|
3100
|
+
["terminal.ScrollToTop", "terminal.ScrollToTop"],
|
|
3101
|
+
["terminal.ScrollToBottom", "terminal.ScrollToBottom"],
|
|
3102
|
+
["terminal.NavigationNext", "terminal.NavigationNext"],
|
|
3103
|
+
["terminal.NavigationPrevious", "terminal.NavigationPrevious"],
|
|
3104
|
+
["terminal.resetViewContainerLocation", "terminal.resetViewContainerLocation"],
|
|
3105
|
+
["terminal.resetViewLocation", "terminal.resetViewLocation"],
|
|
3106
|
+
["terminal.toggleVisibility", "terminal.toggleVisibility"],
|
|
3107
|
+
["terminal.removeView", "terminal.removeView"],
|
|
3108
|
+
];
|
|
3109
|
+
const workspaceCommands = [
|
|
3110
|
+
["Workspace.NewWindow", "Workspace.NewWindow"],
|
|
3111
|
+
["Workspace.CloseWindow", "Workspace.CloseWindow"],
|
|
3112
|
+
["Workspace.CloseFolder", "Workspace.CloseFolder"],
|
|
3113
|
+
["Workspace.SaveWorkspaceAs", "Workspace.SaveWorkspaceAs"],
|
|
3114
|
+
["Workspace.DuplicateWorkspaceInNewWindow", "Workspace.DuplicateWorkspaceInNewWindow"],
|
|
3115
|
+
["Workspace.AddFolder", "Workspace.AddFolder"],
|
|
3116
|
+
["Workspace.RemoveFolder", "Workspace.RemoveFolder"],
|
|
3117
|
+
["Workspace.OpenSettings", "Workspace.OpenSettings"],
|
|
3118
|
+
["Workspace.OpenKeyboardShortcuts", "Workspace.OpenKeyboardShortcuts"],
|
|
3119
|
+
["Workspace.OpenSnippets", "Workspace.OpenSnippets"],
|
|
3120
|
+
["Workspace.OpenUserTasks", "Workspace.OpenUserTasks"],
|
|
3121
|
+
["Workspace.ConfigureLanguageSpecificSettings", "Workspace.ConfigureLanguageSpecificSettings"],
|
|
3122
|
+
["Workspace.RestartExtensionHost", "Workspace.RestartExtensionHost"],
|
|
3123
|
+
];
|
|
3124
|
+
const extensionCommands = [
|
|
3125
|
+
["Extensions.InstallExtension", "Extensions.InstallExtension"],
|
|
3126
|
+
["Extensions.ShowInstalledExtensions", "Extensions.ShowInstalledExtensions"],
|
|
3127
|
+
["Extensions.ShowRecommendedExtensions", "Extensions.ShowRecommendedExtensions"],
|
|
3128
|
+
["Extensions.ShowPopularExtensions", "Extensions.ShowPopularExtensions"],
|
|
3129
|
+
["Extensions.UpdateAllExtensions", "Extensions.UpdateAllExtensions"],
|
|
3130
|
+
["Extensions.EnableAllExtensions", "Extensions.EnableAllExtensions"],
|
|
3131
|
+
["Extensions.DisableAllExtensions", "Extensions.DisableAllExtensions"],
|
|
3132
|
+
["Extensions.ShowExtensionsForLanguage", "Extensions.ShowExtensionsForLanguage"],
|
|
3133
|
+
["Extensions.CheckForExtensionUpdates", "Extensions.CheckForExtensionUpdates"],
|
|
3134
|
+
["Extensions.OpenExtensionsFolder", "Extensions.OpenExtensionsFolder"],
|
|
3135
|
+
];
|
|
3136
|
+
const editorGroupCommands = [
|
|
3137
|
+
["EditorGroup.NewGroupAbove", "EditorGroup.NewGroupAbove"],
|
|
3138
|
+
["EditorGroup.NewGroupBelow", "EditorGroup.NewGroupBelow"],
|
|
3139
|
+
["EditorGroup.NewGroupLeft", "EditorGroup.NewGroupLeft"],
|
|
3140
|
+
["EditorGroup.NewGroupRight", "EditorGroup.NewGroupRight"],
|
|
3141
|
+
["EditorGroup.CloseGroup", "EditorGroup.CloseGroup"],
|
|
3142
|
+
["EditorGroup.CloseOtherGroups", "EditorGroup.CloseOtherGroups"],
|
|
3143
|
+
["EditorGroup.MoveEditorLeft", "EditorGroup.MoveEditorLeft"],
|
|
3144
|
+
["EditorGroup.MoveEditorRight", "EditorGroup.MoveEditorRight"],
|
|
3145
|
+
["EditorGroup.MoveEditorToLeftGroup", "EditorGroup.MoveEditorToLeftGroup"],
|
|
3146
|
+
["EditorGroup.MoveEditorToRightGroup", "EditorGroup.MoveEditorToRightGroup"],
|
|
3147
|
+
["EditorGroup.MoveEditorToAboveGroup", "EditorGroup.MoveEditorToAboveGroup"],
|
|
3148
|
+
["EditorGroup.MoveEditorToBelowGroup", "EditorGroup.MoveEditorToBelowGroup"],
|
|
3149
|
+
["EditorGroup.MoveEditorToFirstGroup", "EditorGroup.MoveEditorToFirstGroup"],
|
|
3150
|
+
["EditorGroup.MoveEditorToLastGroup", "EditorGroup.MoveEditorToLastGroup"],
|
|
3151
|
+
["EditorGroup.FocusPreviousGroup", "EditorGroup.FocusPreviousGroup"],
|
|
3152
|
+
["EditorGroup.FocusNextGroup", "EditorGroup.FocusNextGroup"],
|
|
3153
|
+
["EditorGroup.FocusAboveGroup", "EditorGroup.FocusAboveGroup"],
|
|
3154
|
+
["EditorGroup.FocusBelowGroup", "EditorGroup.FocusBelowGroup"],
|
|
3155
|
+
["EditorGroup.FocusLeftGroup", "EditorGroup.FocusLeftGroup"],
|
|
3156
|
+
["EditorGroup.FocusRightGroup", "EditorGroup.FocusRightGroup"],
|
|
3157
|
+
];
|
|
3158
|
+
const languageCommands = [
|
|
3159
|
+
["Language.ChangeLanguageMode", "Language.ChangeLanguageMode"],
|
|
3160
|
+
["Language.ConfigureLanguageBasedSettings", "Language.ConfigureLanguageBasedSettings"],
|
|
3161
|
+
["Language.ShowReferences", "Language.ShowReferences"],
|
|
3162
|
+
["Language.Rename", "Language.Rename"],
|
|
3163
|
+
["Language.TriggerParameterHints", "Language.TriggerParameterHints"],
|
|
3164
|
+
["Language.TriggerSuggest", "Language.TriggerSuggest"],
|
|
3165
|
+
["Language.ShowHover", "Language.ShowHover"],
|
|
3166
|
+
["Language.QuickFix", "Language.QuickFix"],
|
|
3167
|
+
["Language.OrganizeImports", "Language.OrganizeImports"],
|
|
3168
|
+
["Language.CodeAction", "Language.CodeAction"],
|
|
3169
|
+
["Language.SourceAction", "Language.SourceAction"],
|
|
3170
|
+
["Language.FindAllReferences", "Language.FindAllReferences"],
|
|
3171
|
+
["Language.InspectTMScopes", "Language.InspectTMScopes"],
|
|
3172
|
+
["Language.ForceRetokenize", "Language.ForceRetokenize"],
|
|
3173
|
+
];
|
|
3174
|
+
const preferenceCommands = [
|
|
3175
|
+
["Preferences.OpenSettings", "Preferences.OpenSettings"],
|
|
3176
|
+
["Preferences.OpenSettingsJson", "Preferences.OpenSettingsJson"],
|
|
3177
|
+
["Preferences.OpenUserSettings", "Preferences.OpenUserSettings"],
|
|
3178
|
+
["Preferences.OpenWorkspaceSettings", "Preferences.OpenWorkspaceSettings"],
|
|
3179
|
+
["Preferences.OpenFolderSettings", "Preferences.OpenFolderSettings"],
|
|
3180
|
+
["Preferences.OpenDefaultSettings", "Preferences.OpenDefaultSettings"],
|
|
3181
|
+
["Preferences.OpenKeyboardShortcuts", "Preferences.OpenKeyboardShortcuts"],
|
|
3182
|
+
["Preferences.OpenKeyboardShortcutsJson", "Preferences.OpenKeyboardShortcutsJson"],
|
|
3183
|
+
["Preferences.OpenUserSnippets", "Preferences.OpenUserSnippets"],
|
|
3184
|
+
["Preferences.SelectColorTheme", "Preferences.SelectColorTheme"],
|
|
3185
|
+
["Preferences.SelectIconTheme", "Preferences.SelectIconTheme"],
|
|
3186
|
+
["Preferences.SelectProductIconTheme", "Preferences.SelectProductIconTheme"],
|
|
3187
|
+
["Preferences.ConfigureDisplayLanguage", "Preferences.ConfigureDisplayLanguage"],
|
|
3188
|
+
];
|
|
3189
|
+
const searchCommands = [
|
|
3190
|
+
["Search.Find", "Search.Find"],
|
|
3191
|
+
["Search.Replace", "Search.Replace"],
|
|
3192
|
+
["Search.FindInFiles", "Search.FindInFiles"],
|
|
3193
|
+
["Search.ReplaceInFiles", "Search.ReplaceInFiles"],
|
|
3194
|
+
["Search.FindNext", "Search.FindNext"],
|
|
3195
|
+
["Search.FindPrevious", "Search.FindPrevious"],
|
|
3196
|
+
["Search.ToggleCaseSensitive", "Search.ToggleCaseSensitive"],
|
|
3197
|
+
["Search.ToggleWholeWord", "Search.ToggleWholeWord"],
|
|
3198
|
+
["Search.ToggleRegex", "Search.ToggleRegex"],
|
|
3199
|
+
["Search.ToggleSearchPreserveCase", "Search.ToggleSearchPreserveCase"],
|
|
3200
|
+
["Search.CollapseSearchResults", "Search.CollapseSearchResults"],
|
|
3201
|
+
["Search.ShowNextSearchTerm", "Search.ShowNextSearchTerm"],
|
|
3202
|
+
["Search.ShowPreviousSearchTerm", "Search.ShowPreviousSearchTerm"],
|
|
3203
|
+
];
|
|
3204
|
+
const gitCommands = [
|
|
3205
|
+
["Git.Clone", "git.clone"],
|
|
3206
|
+
["Git.Init", "git.init"],
|
|
3207
|
+
["Git.Commit", "git.commit"],
|
|
3208
|
+
["Git.CommitAll", "git.commitAll"],
|
|
3209
|
+
["Git.CommitAllSigned", "git.commitAllSigned"],
|
|
3210
|
+
["Git.CommitSigned", "git.commitSigned"],
|
|
3211
|
+
["Git.CommitStaged", "git.commitStaged"],
|
|
3212
|
+
["Git.CommitStagedSigned", "git.commitStagedSigned"],
|
|
3213
|
+
["Git.CommitEmpty", "git.commitEmpty"],
|
|
3214
|
+
["Git.Push", "git.push"],
|
|
3215
|
+
["Git.PushWithTags", "git.pushWithTags"],
|
|
3216
|
+
["Git.Pull", "git.pull"],
|
|
3217
|
+
["Git.Fetch", "git.fetch"],
|
|
3218
|
+
["Git.Sync", "git.sync"],
|
|
3219
|
+
["Git.Publish", "git.publish"],
|
|
3220
|
+
["Git.Checkout", "git.checkout"],
|
|
3221
|
+
["Git.Branch", "git.branch"],
|
|
3222
|
+
["Git.CreateTag", "git.createTag"],
|
|
3223
|
+
["Git.DeleteTag", "git.deleteTag"],
|
|
3224
|
+
["Git.Merge", "git.merge"],
|
|
3225
|
+
["Git.Rebase", "git.rebase"],
|
|
3226
|
+
["Git.Stage", "git.stage"],
|
|
3227
|
+
["Git.StageAll", "git.stageAll"],
|
|
3228
|
+
["Git.StageChange", "git.stageChange"],
|
|
3229
|
+
["Git.Unstage", "git.unstage"],
|
|
3230
|
+
["Git.UnstageAll", "git.unstageAll"],
|
|
3231
|
+
["Git.Clean", "git.clean"],
|
|
3232
|
+
["Git.CleanAll", "git.cleanAll"],
|
|
3233
|
+
["Git.Stash", "git.stash"],
|
|
3234
|
+
["Git.StashPop", "git.stashPop"],
|
|
3235
|
+
["Git.StashApply", "git.stashApply"],
|
|
3236
|
+
["Git.StashDrop", "git.stashDrop"],
|
|
3237
|
+
["Git.ShowOutput", "git.showOutput"],
|
|
3238
|
+
["Git.Refresh", "git.refresh"],
|
|
3239
|
+
["Git.OpenFile", "git.openFile"],
|
|
3240
|
+
["Git.OpenAllChanges", "git.openAllChanges"],
|
|
3241
|
+
["Git.OpenChange", "git.openChange"],
|
|
3242
|
+
["Git.OpenRepositoryInGitHub", "git.openRepositoryInGithub"],
|
|
3243
|
+
|
|
3244
|
+
["git.showOutput", ""],
|
|
3245
|
+
["git.refresh", ""],
|
|
3246
|
+
["git.openResource", ""],
|
|
3247
|
+
["git.openAllChanges", ""],
|
|
3248
|
+
["git.openMergeEditor", ""],
|
|
3249
|
+
["git.continueInLocalClone", ""],
|
|
3250
|
+
["git.clone", ""],
|
|
3251
|
+
["git.cloneRecursive", ""],
|
|
3252
|
+
["git.init", ""],
|
|
3253
|
+
["git.openRepository", ""],
|
|
3254
|
+
["git.reopenClosedRepositories", ""],
|
|
3255
|
+
["git.close", ""],
|
|
3256
|
+
["git.closeOtherRepositories", ""],
|
|
3257
|
+
["git.openFile", ""],
|
|
3258
|
+
["git.openFile2", ""],
|
|
3259
|
+
["git.openHEADFile", ""],
|
|
3260
|
+
["git.openChange", ""],
|
|
3261
|
+
["git.rename", ""],
|
|
3262
|
+
["git.stage", ""],
|
|
3263
|
+
["git.stageAll", ""],
|
|
3264
|
+
["git.stageAllTracked", ""],
|
|
3265
|
+
["git.stageAllUntracked", ""],
|
|
3266
|
+
["git.stageAllMerge", ""],
|
|
3267
|
+
["git.stageChange", ""],
|
|
3268
|
+
["git.diff.stageHunk", ""],
|
|
3269
|
+
["git.diff.stageSelection", ""],
|
|
3270
|
+
["git.stageSelectedRanges", ""],
|
|
3271
|
+
["git.stageFile", ""],
|
|
3272
|
+
["git.acceptMerge", ""],
|
|
3273
|
+
["git.runGitMerge", ""],
|
|
3274
|
+
["git.runGitMergeDiff3", ""],
|
|
3275
|
+
["git.revertChange", ""],
|
|
3276
|
+
["git.revertSelectedRanges", ""],
|
|
3277
|
+
["git.unstage", ""],
|
|
3278
|
+
["git.unstageAll", ""],
|
|
3279
|
+
["git.unstageSelectedRanges", ""],
|
|
3280
|
+
["git.unstageFile", ""],
|
|
3281
|
+
["git.unstageChange", ""],
|
|
3282
|
+
["git.clean", ""],
|
|
3283
|
+
["git.cleanAll", ""],
|
|
3284
|
+
["git.cleanAllTracked", ""],
|
|
3285
|
+
["git.cleanAllUntracked", ""],
|
|
3286
|
+
["git.commit", ""],
|
|
3287
|
+
["git.commitAmend", ""],
|
|
3288
|
+
["git.commitSigned", ""],
|
|
3289
|
+
["git.commitStaged", ""],
|
|
3290
|
+
["git.commitStagedSigned", ""],
|
|
3291
|
+
["git.commitStagedAmend", ""],
|
|
3292
|
+
["git.commitAll", ""],
|
|
3293
|
+
["git.commitAllSigned", ""],
|
|
3294
|
+
["git.commitAllAmend", ""],
|
|
3295
|
+
["git.commitMessageAccept", ""],
|
|
3296
|
+
["git.commitMessageDiscard", ""],
|
|
3297
|
+
["git.commitEmpty", ""],
|
|
3298
|
+
["git.commitNoVerify", ""],
|
|
3299
|
+
["git.commitStagedNoVerify", ""],
|
|
3300
|
+
["git.commitStagedSignedNoVerify", ""],
|
|
3301
|
+
["git.commitAmendNoVerify", ""],
|
|
3302
|
+
["git.commitSignedNoVerify", ""],
|
|
3303
|
+
["git.commitStagedAmendNoVerify", ""],
|
|
3304
|
+
["git.commitAllNoVerify", ""],
|
|
3305
|
+
["git.commitAllSignedNoVerify", ""],
|
|
3306
|
+
["git.commitAllAmendNoVerify", ""],
|
|
3307
|
+
["git.commitEmptyNoVerify", ""],
|
|
3308
|
+
["git.restoreCommitTemplate", ""],
|
|
3309
|
+
["git.undoCommit", ""],
|
|
3310
|
+
["git.checkout", ""],
|
|
3311
|
+
["git.graph.checkout", ""],
|
|
3312
|
+
["git.checkoutDetached", ""],
|
|
3313
|
+
["git.graph.checkoutDetached", ""],
|
|
3314
|
+
["git.branch", ""],
|
|
3315
|
+
["git.branchFrom", ""],
|
|
3316
|
+
["git.deleteBranch", ""],
|
|
3317
|
+
["git.graph.deleteBranch", ""],
|
|
3318
|
+
["git.deleteRemoteBranch", ""],
|
|
3319
|
+
["git.renameBranch", ""],
|
|
3320
|
+
["git.merge", ""],
|
|
3321
|
+
["git.mergeAbort", ""],
|
|
3322
|
+
["git.rebase", ""],
|
|
3323
|
+
["git.createTag", ""],
|
|
3324
|
+
["git.deleteTag", ""],
|
|
3325
|
+
["git.createWorktree", ""],
|
|
3326
|
+
["git.deleteWorktree", ""],
|
|
3327
|
+
["git.deleteWorktreeFromPalette", ""],
|
|
3328
|
+
["git.openWorktree", ""],
|
|
3329
|
+
["git.openWorktreeInNewWindow", ""],
|
|
3330
|
+
["git.graph.deleteTag", ""],
|
|
3331
|
+
["git.deleteRemoteTag", ""],
|
|
3332
|
+
["git.fetch", ""],
|
|
3333
|
+
["git.fetchPrune", ""],
|
|
3334
|
+
["git.fetchAll", ""],
|
|
3335
|
+
["git.fetchRef", ""],
|
|
3336
|
+
["git.pullFrom", ""],
|
|
3337
|
+
["git.pull", ""],
|
|
3338
|
+
["git.pullRebase", ""],
|
|
3339
|
+
["git.pullRef", ""],
|
|
3340
|
+
["git.push", ""],
|
|
3341
|
+
["git.pushForce", ""],
|
|
3342
|
+
["git.pushWithTags", ""],
|
|
3343
|
+
["git.pushWithTagsForce", ""],
|
|
3344
|
+
["git.pushRef", ""],
|
|
3345
|
+
["git.cherryPick", ""],
|
|
3346
|
+
["git.graph.cherryPick", ""],
|
|
3347
|
+
["git.cherryPickAbort", ""],
|
|
3348
|
+
["git.pushTo", ""],
|
|
3349
|
+
["git.pushToForce", ""],
|
|
3350
|
+
["git.pushTags", ""],
|
|
3351
|
+
["git.addRemote", ""],
|
|
3352
|
+
["git.removeRemote", ""],
|
|
3353
|
+
["git.sync", ""],
|
|
3354
|
+
["git._syncAll", ""],
|
|
3355
|
+
["git.syncRebase", ""],
|
|
3356
|
+
["git.publish", ""],
|
|
3357
|
+
["git.ignore", ""],
|
|
3358
|
+
["git.revealInExplorer", ""],
|
|
3359
|
+
["git.revealFileInOS.windows", ""],
|
|
3360
|
+
["git.revealFileInOS.mac", ""],
|
|
3361
|
+
["git.revealFileInOS.linux", ""],
|
|
3362
|
+
["git.stash", ""],
|
|
3363
|
+
["git.stashStaged", ""],
|
|
3364
|
+
["git.stashIncludeUntracked", ""],
|
|
3365
|
+
["git.stashPop", ""],
|
|
3366
|
+
["git.stashPopLatest", ""],
|
|
3367
|
+
["git.stashPopEditor", ""],
|
|
3368
|
+
["git.stashApply", ""],
|
|
3369
|
+
["git.stashApplyLatest", ""],
|
|
3370
|
+
["git.stashApplyEditor", ""],
|
|
3371
|
+
["git.stashDrop", ""],
|
|
3372
|
+
["git.stashDropAll", ""],
|
|
3373
|
+
["git.stashDropEditor", ""],
|
|
3374
|
+
["git.stashView", ""],
|
|
3375
|
+
["git.timeline.openDiff", ""],
|
|
3376
|
+
["git.timeline.viewCommit", ""],
|
|
3377
|
+
["git.timeline.copyCommitId", ""],
|
|
3378
|
+
["git.timeline.copyCommitMessage", ""],
|
|
3379
|
+
["git.timeline.selectForCompare", ""],
|
|
3380
|
+
["git.timeline.compareWithSelected", ""],
|
|
3381
|
+
["git.rebaseAbort", ""],
|
|
3382
|
+
["git.closeAllDiffEditors", ""],
|
|
3383
|
+
["git.closeAllUnmodifiedEditors", ""],
|
|
3384
|
+
["git.openRepositoriesInParentFolders", ""],
|
|
3385
|
+
["git.manageUnsafeRepositories", ""],
|
|
3386
|
+
["git.viewChanges", ""],
|
|
3387
|
+
["git.viewStagedChanges", ""],
|
|
3388
|
+
["git.viewUntrackedChanges", ""],
|
|
3389
|
+
["git.copyCommitId", ""],
|
|
3390
|
+
["git.copyCommitMessage", ""],
|
|
3391
|
+
["git.viewCommit", ""],
|
|
3392
|
+
["git.copyContentToClipboard", ""],
|
|
3393
|
+
["git.blame.toggleEditorDecoration", ""],
|
|
3394
|
+
["git.blame.toggleStatusBarItem", ""],
|
|
3395
|
+
["git.api.getRepositories", ""],
|
|
3396
|
+
["git.api.getRepositoryState", ""],
|
|
3397
|
+
["git.api.getRemoteSources", ""],
|
|
3398
|
+
];
|
|
3399
|
+
const taskCommands = [
|
|
3400
|
+
["tasks.RunBuildTask", "tasks.RunBuildTask"],
|
|
3401
|
+
["tasks.RunTestTask", "tasks.RunTestTask"],
|
|
3402
|
+
["tasks.RunTask", "tasks.RunTask"],
|
|
3403
|
+
["tasks.RestartTask", "tasks.RestartTask"],
|
|
3404
|
+
["tasks.ShowTasks", "tasks.ShowTasks"],
|
|
3405
|
+
["tasks.TerminateTask", "tasks.TerminateTask"],
|
|
3406
|
+
["tasks.ConfigureTaskRunner", "tasks.ConfigureTaskRunner"],
|
|
3407
|
+
["tasks.ConfigureDefaultBuildTask", "tasks.ConfigureDefaultBuildTask"],
|
|
3408
|
+
["tasks.ConfigureDefaultTestTask", "tasks.ConfigureDefaultTestTask"],
|
|
3409
|
+
];
|
|
3410
|
+
const notifications = [
|
|
3411
|
+
["notification.acceptPrimaryAction", "notification.acceptPrimaryAction"],
|
|
3412
|
+
["notification.clear", "notification.clear"],
|
|
3413
|
+
["notification.collapse", "notification.collapse"],
|
|
3414
|
+
["notification.expand", "notification.expand"],
|
|
3415
|
+
["notification.toggle", "notification.toggle"],
|
|
3416
|
+
["notifications.clearAll", "notifications.clearAll"],
|
|
3417
|
+
["notifications.focusFirstToast", "notifications.focusFirstToast"],
|
|
3418
|
+
["notifications.focusLastToast", "notifications.focusLastToast"],
|
|
3419
|
+
["notifications.focusNextToast", "notifications.focusNextToast"],
|
|
3420
|
+
["notifications.focusPreviousToast", "notifications.focusPreviousToast"],
|
|
3421
|
+
["notifications.focusToasts", "notifications.focusToasts"],
|
|
3422
|
+
["notifications.hideList", "notifications.hideList"],
|
|
3423
|
+
["notifications.hideToasts", "notifications.hideToasts"],
|
|
3424
|
+
["notifications.showList", "notifications.showList"],
|
|
3425
|
+
["notifications.toggleDoNotDisturbMode", "notifications.toggleDoNotDisturbMode"],
|
|
3426
|
+
["notifications.toggleDoNotDisturbModeBySource", "notifications.toggleDoNotDisturbModeBySource"],
|
|
3427
|
+
["notifications.toggleList", "notifications.toggleList"],
|
|
3428
|
+
]
|
|
3429
|
+
|
|
3430
|
+
|
|
3431
|
+
const npmcommands = [
|
|
3432
|
+
["npm.runScript", "npm.runScript"],
|
|
3433
|
+
["npm.debugScript", "npm.debugScript"],
|
|
3434
|
+
["npm.openScript", "npm.openScript"],
|
|
3435
|
+
["npm.runInstall", "npm.runInstall"],
|
|
3436
|
+
["npm.runScriptFromHover", "npm.runScriptFromHover"],
|
|
3437
|
+
["npm.debugScriptFromHover", "npm.debugScriptFromHover"],
|
|
3438
|
+
["npm.runSelectedScript", "npm.runSelectedScript"],
|
|
3439
|
+
["npm.toggleVisibility", "npm.toggleVisibility"],
|
|
3440
|
+
["npm.removeView", "npm.removeView"],
|
|
3441
|
+
["npm.runScriptFromFolder", "npm.runScriptFromFolder"],
|
|
3442
|
+
["npm.refresh", "npm.refresh"],
|
|
3443
|
+
["npm.scriptRunner", "npm.scriptRunner"],
|
|
3444
|
+
["npm.packageManager", "npm.packageManager"],
|
|
3445
|
+
]
|
|
3446
|
+
const settings = [
|
|
3447
|
+
["settings.action.clearSearchResults", "settings.action.clearSearchResults"],
|
|
3448
|
+
["settings.action.focusLevelUp", "settings.action.focusLevelUp"],
|
|
3449
|
+
["settings.action.focusSettingControl", "settings.action.focusSettingControl"],
|
|
3450
|
+
["settings.action.focusSettingsFile", "settings.action.focusSettingsFile"],
|
|
3451
|
+
["settings.action.focusSettingsFromSearch", "settings.action.focusSettingsFromSearch"],
|
|
3452
|
+
["settings.action.focusSettingsList", "settings.action.focusSettingsList"],
|
|
3453
|
+
["settings.action.focusTOC", "settings.action.focusTOC"],
|
|
3454
|
+
["settings.action.search", "settings.action.search"],
|
|
3455
|
+
["settings.action.showContextMenu", "settings.action.showContextMenu"],
|
|
3456
|
+
["settings.action.toggleAiSearch", "settings.action.toggleAiSearch"],
|
|
3457
|
+
["settings.filterByOnline", "settings.filterByOnline"],
|
|
3458
|
+
["settings.filterByTelemetry", "settings.filterByTelemetry"],
|
|
3459
|
+
["settings.filterUntrusted", "settings.filterUntrusted"],
|
|
3460
|
+
["settings.switchToJSON", "settings.switchToJSON"],
|
|
3461
|
+
]
|
|
3462
|
+
|
|
3463
|
+
/**
|
|
3464
|
+
*
|
|
3465
|
+
*
|
|
3466
|
+
|
|
3467
|
+
|
|
3468
|
+
cursorBottom
|
|
3469
|
+
cursorBottomSelect
|
|
3470
|
+
cursorColumnSelectDown
|
|
3471
|
+
cursorColumnSelectLeft
|
|
3472
|
+
cursorColumnSelectPageDown
|
|
3473
|
+
cursorColumnSelectPageUp
|
|
3474
|
+
cursorColumnSelectRight
|
|
3475
|
+
cursorColumnSelectUp
|
|
3476
|
+
cursorDown
|
|
3477
|
+
cursorDownSelect
|
|
3478
|
+
cursorEnd
|
|
3479
|
+
cursorEndSelect
|
|
3480
|
+
cursorHome
|
|
3481
|
+
cursorHomeSelect
|
|
3482
|
+
cursorLeft
|
|
3483
|
+
cursorLeftSelect
|
|
3484
|
+
cursorLineEnd
|
|
3485
|
+
cursorLineEndSelect
|
|
3486
|
+
cursorLineStart
|
|
3487
|
+
cursorLineStartSelect
|
|
3488
|
+
cursorMove
|
|
3489
|
+
cursorPageDown
|
|
3490
|
+
cursorPageDownSelect
|
|
3491
|
+
cursorPageUp
|
|
3492
|
+
cursorPageUpSelect
|
|
3493
|
+
cursorRedo
|
|
3494
|
+
cursorRight
|
|
3495
|
+
cursorRightSelect
|
|
3496
|
+
cursorTop
|
|
3497
|
+
cursorTopSelect
|
|
3498
|
+
cursorUndo
|
|
3499
|
+
cursorUp
|
|
3500
|
+
cursorUpSelect
|
|
3501
|
+
cursorWordAccessibilityLeft
|
|
3502
|
+
cursorWordAccessibilityLeftSelect
|
|
3503
|
+
cursorWordAccessibilityRight
|
|
3504
|
+
cursorWordAccessibilityRightSelect
|
|
3505
|
+
cursorWordEndLeft
|
|
3506
|
+
cursorWordEndLeftSelect
|
|
3507
|
+
cursorWordEndRight
|
|
3508
|
+
cursorWordEndRightSelect
|
|
3509
|
+
cursorWordLeft
|
|
3510
|
+
cursorWordLeftSelect
|
|
3511
|
+
cursorWordPartLeft
|
|
3512
|
+
cursorWordPartLeftSelect
|
|
3513
|
+
cursorWordPartRight
|
|
3514
|
+
cursorWordPartRightSelect
|
|
3515
|
+
cursorWordPartStartLeft
|
|
3516
|
+
cursorWordPartStartLeftSelect
|
|
3517
|
+
cursorWordRight
|
|
3518
|
+
cursorWordRightSelect
|
|
3519
|
+
cursorWordStartLeft
|
|
3520
|
+
cursorWordStartLeftSelect
|
|
3521
|
+
cursorWordStartRight
|
|
3522
|
+
cursorWordStartRightSelect
|
|
3523
|
+
|
|
3524
|
+
insertBestCompletion
|
|
3525
|
+
insertNextSuggestion
|
|
3526
|
+
insertPrevSuggestion
|
|
3527
|
+
|
|
3528
|
+
|
|
3529
|
+
problems.action.clearFilterText
|
|
3530
|
+
problems.action.copy
|
|
3531
|
+
problems.action.copyMessage
|
|
3532
|
+
problems.action.copyRelatedInformationMessage
|
|
3533
|
+
problems.action.focusFilter
|
|
3534
|
+
problems.action.focusProblemsFromFilter
|
|
3535
|
+
problems.action.open
|
|
3536
|
+
problems.action.openToSide
|
|
3537
|
+
problems.action.showMultilineMessage
|
|
3538
|
+
problems.action.showQuickFixes
|
|
3539
|
+
problems.action.showSinglelineMessage
|
|
3540
|
+
|
|
3541
|
+
|
|
3542
|
+
vscode.changes
|
|
3543
|
+
vscode.diff
|
|
3544
|
+
vscode.getEditorLayout
|
|
3545
|
+
vscode.moveViews
|
|
3546
|
+
vscode.newWindow
|
|
3547
|
+
vscode.open
|
|
3548
|
+
vscode.openFolder
|
|
3549
|
+
vscode.openIssueReporter
|
|
3550
|
+
vscode.peekTestError
|
|
3551
|
+
vscode.pickMultipleTestProfiles
|
|
3552
|
+
vscode.pickTestProfile
|
|
3553
|
+
vscode.removeFromRecentlyOpened
|
|
3554
|
+
vscode.revealTest
|
|
3555
|
+
vscode.runTestsById
|
|
3556
|
+
vscode.setEditorLayout
|
|
3557
|
+
vscode.testing.getControllersWithTests
|
|
3558
|
+
vscode.testing.getTestsInFile
|
|
3559
|
+
|
|
3560
|
+
|
|
3561
|
+
toggle.chat.commandCenter.enabled
|
|
3562
|
+
toggle.diff.ignoreTrimWhitespace
|
|
3563
|
+
toggle.diff.renderSideBySide
|
|
3564
|
+
toggle.toggleCustomTitleBar
|
|
3565
|
+
toggle.window.commandCenter
|
|
3566
|
+
toggle.window.customTitleBarVisibility
|
|
3567
|
+
toggle.window.customTitleBarVisibility.windowed
|
|
3568
|
+
toggle.workbench.editor.editorActionsLocation
|
|
3569
|
+
toggle.workbench.experimental.share.enabled
|
|
3570
|
+
toggle.workbench.layoutControl.enabled
|
|
3571
|
+
toggle.workbench.navigationControl.enabled
|
|
3572
|
+
const allCommands = [
|
|
3573
|
+
...iadded,
|
|
3574
|
+
...commandArray,
|
|
3575
|
+
...fileCommands,
|
|
3576
|
+
...editCommands,
|
|
3577
|
+
...viewCommands,
|
|
3578
|
+
...navigationCommands,
|
|
3579
|
+
...debugCommands,
|
|
3580
|
+
...terminalCommands,
|
|
3581
|
+
...workspaceCommands,
|
|
3582
|
+
...extensionCommands,
|
|
3583
|
+
...editorGroupCommands,
|
|
3584
|
+
...languageCommands,
|
|
3585
|
+
...preferenceCommands,
|
|
3586
|
+
...searchCommands,
|
|
3587
|
+
...gitCommands,
|
|
3588
|
+
...taskCommands,
|
|
3589
|
+
...notifications,
|
|
3590
|
+
...settings,
|
|
3591
|
+
];
|
|
3592
|
+
|
|
3593
|
+
const categories = [
|
|
3594
|
+
|
|
3595
|
+
{ id: "file", name: "File Commands", commands: fileCommands },
|
|
3596
|
+
{ id: "edit", name: "Edit Commands", commands: editCommands },
|
|
3597
|
+
{ id: "view", name: "View Commands", commands: viewCommands },
|
|
3598
|
+
{ id: "navigation", name: "Navigation Commands", commands: navigationCommands, },
|
|
3599
|
+
{ id: "debug", name: "Debug Commands", commands: debugCommands },
|
|
3600
|
+
{ id: "terminal", name: "terminal Commands", commands: terminalCommands },
|
|
3601
|
+
{ id: "workspace", name: "Workspace Commands", commands: workspaceCommands, },
|
|
3602
|
+
{ id: "extension", name: "Extension Commands", commands: extensionCommands, },
|
|
3603
|
+
{ id: "editorGroup", name: "Editor Group Commands", commands: editorGroupCommands, },
|
|
3604
|
+
{ id: "language", name: "Language Commands", commands: languageCommands },
|
|
3605
|
+
{ id: "preference", name: "Preference Commands", commands: preferenceCommands, },
|
|
3606
|
+
{ id: "search", name: "Search Commands", commands: searchCommands },
|
|
3607
|
+
{ id: "git", name: "Git Commands", commands: gitCommands },
|
|
3608
|
+
{ id: "task", name: "task Commands", commands: taskCommands },
|
|
3609
|
+
{ id: "notifications", name: "notifications", commands: notifications },
|
|
3610
|
+
{ id: "settings", name: "settings", commands: settings },
|
|
3611
|
+
{ id: "all", name: "All Commands", commands: allCommands },
|
|
3612
|
+
{ id: "other", name: "Other Commands", commands: commandArray },
|
|
3613
|
+
{ id: "custom", name: "Generic Commands", commands: commandArray },
|
|
3614
|
+
];
|
|
3615
|
+
|
|
3616
|
+
const formatCommandName = (name) => {
|
|
3617
|
+
return name
|
|
3618
|
+
.replace(/^[^.]*\./, "")
|
|
3619
|
+
.replace(/([A-Z])/g, " $1")
|
|
3620
|
+
.replace(/^./, (str) => str.toUpperCase())
|
|
3621
|
+
.trim();
|
|
3622
|
+
};
|
|
3623
|
+
|
|
3624
|
+
const getCategoryIdForCommand = (name) => {
|
|
3625
|
+
if (name.startsWith("ShortcutMenuBar.")) return "custom";
|
|
3626
|
+
if (name.startsWith("Navigation.")) return "navigation";
|
|
3627
|
+
if (name.startsWith("File.")) return "file";
|
|
3628
|
+
if (name.startsWith("Edit.")) return "edit";
|
|
3629
|
+
if (name.startsWith("View.")) return "view";
|
|
3630
|
+
if (name.startsWith("Go.") || name.startsWith("Navigate.")) return "navigation";
|
|
3631
|
+
if (name.startsWith("Debug.")) return "debug";
|
|
3632
|
+
if (name.startsWith("terminal.")) return "terminal";
|
|
3633
|
+
if (name.startsWith("Workspace.")) return "workspace";
|
|
3634
|
+
if (name.startsWith("Extensions.")) return "extension";
|
|
3635
|
+
if (name.startsWith("EditorGroup.")) return "editorGroup";
|
|
3636
|
+
if (name.startsWith("Language.")) return "language";
|
|
3637
|
+
if (name.startsWith("Preferences.")) return "preference";
|
|
3638
|
+
if (name.startsWith("Search.")) return "search";
|
|
3639
|
+
if (name.startsWith("Git.")) return "git";
|
|
3640
|
+
if (name.startsWith("tasks.")) return "task";
|
|
3641
|
+
return "other";
|
|
3642
|
+
};
|
|
3643
|
+
|
|
3644
|
+
const [copiedText, setCopiedText] = useState(null);
|
|
3645
|
+
|
|
3646
|
+
useEffect(() => {
|
|
3647
|
+
if (copiedText) {
|
|
3648
|
+
navigator.clipboard
|
|
3649
|
+
.writeText(copiedText)
|
|
3650
|
+
.then(() => {
|
|
3651
|
+
toast.success('Copied cmd!')
|
|
3652
|
+
setTimeout(() => setCopiedText(null), 3000);
|
|
3653
|
+
})
|
|
3654
|
+
.catch((error) => {
|
|
3655
|
+
console.error("Failed to copy text: ", error);
|
|
3656
|
+
toast.error("Failed to copy text: ", error)
|
|
3657
|
+
});
|
|
3658
|
+
}
|
|
3659
|
+
}, [copiedText]);
|
|
3660
|
+
|
|
3661
|
+
const filteredCommands2 = allCommands.filter(([name, commandId]) => {
|
|
3662
|
+
const matchesSearch = searchQuery === "" || formatCommandName(name).toLowerCase().includes(searchQuery.toLowerCase()) || commandId.toLowerCase().includes(searchQuery.toLowerCase());
|
|
3663
|
+
|
|
3664
|
+
const matchesCategory = selectedCategory === "all" || getCategoryIdForCommand(name) === selectedCategory;
|
|
3665
|
+
|
|
3666
|
+
return matchesSearch && matchesCategory;
|
|
3667
|
+
});
|
|
3668
|
+
|
|
3669
|
+
const commandsForSearch = useMemo(() => {
|
|
3670
|
+
return allCommands.map(([name, commandId]) => ({
|
|
3671
|
+
name,
|
|
3672
|
+
commandId,
|
|
3673
|
+
formattedName: formatCommandName(name),
|
|
3674
|
+
category: getCategoryIdForCommand(name),
|
|
3675
|
+
searchableText: `${formatCommandName(name)} ${commandId} ${name}`.toLowerCase()
|
|
3676
|
+
}));
|
|
3677
|
+
}, [allCommands]);
|
|
3678
|
+
|
|
3679
|
+
// Initialize Fuse.js
|
|
3680
|
+
const fuse = useMemo(() => {
|
|
3681
|
+
return new Fuse(commandsForSearch, {
|
|
3682
|
+
keys: [
|
|
3683
|
+
{ name: 'formattedName', weight: 0.3 },
|
|
3684
|
+
{ name: 'commandId', weight: 0.3 },
|
|
3685
|
+
{ name: 'name', weight: 0.2 },
|
|
3686
|
+
{ name: 'searchableText', weight: 0.1 }
|
|
3687
|
+
],
|
|
3688
|
+
threshold: 0.3, // More lenient than icons (0.3) since command names can be quite different
|
|
3689
|
+
includeScore: true,
|
|
3690
|
+
minMatchCharLength: 2,
|
|
3691
|
+
ignoreLocation: true, // Don't penalize matches that aren't at the beginning
|
|
3692
|
+
});
|
|
3693
|
+
}, [commandsForSearch]);
|
|
3694
|
+
|
|
3695
|
+
const filteredCommands = useMemo(() => {
|
|
3696
|
+
let results = commandsForSearch;
|
|
3697
|
+
|
|
3698
|
+
if (searchQuery.trim()) {
|
|
3699
|
+
const fuseResults = fuse.search(searchQuery);
|
|
3700
|
+
results = fuseResults.map(result => result.item);
|
|
3701
|
+
}
|
|
3702
|
+
|
|
3703
|
+
if (selectedCategory !== "all") {
|
|
3704
|
+
results = results.filter(command => command.category === selectedCategory);
|
|
3705
|
+
}
|
|
3706
|
+
|
|
3707
|
+
return results.map(command => [command.name, command.commandId]);
|
|
3708
|
+
}, [searchQuery, selectedCategory, fuse, commandsForSearch]);
|
|
3709
|
+
|
|
3710
|
+
|
|
3711
|
+
return (
|
|
3712
|
+
<div className="container mx-auto py-8 px-4">
|
|
3713
|
+
<Card className="mb-6 border-transparent">
|
|
3714
|
+
<CardHeader>
|
|
3715
|
+
<CardTitle className="text-2xl font-bold">VSCode Commands Reference</CardTitle>
|
|
3716
|
+
<CardDescription>Below is a list of useful VSCode commands that you can use in your extension</CardDescription>
|
|
3717
|
+
</CardHeader>
|
|
3718
|
+
</Card>
|
|
3719
|
+
|
|
3720
|
+
<div className="flex flex-col md:flex-row gap-4 mb-6">
|
|
3721
|
+
<Input
|
|
3722
|
+
placeholder="Search for commands..."
|
|
3723
|
+
value={searchQuery}
|
|
3724
|
+
onChange={(e) => setSearchQuery(e.currentTarget.value)}
|
|
3725
|
+
className="flex-1"
|
|
3726
|
+
/>
|
|
3727
|
+
<Select
|
|
3728
|
+
value={selectedCategory}
|
|
3729
|
+
onValueChange={setSelectedCategory}
|
|
3730
|
+
>
|
|
3731
|
+
<SelectTrigger className="w-[180px]">
|
|
3732
|
+
<SelectValue placeholder="Filter by category" />
|
|
3733
|
+
</SelectTrigger>
|
|
3734
|
+
<SelectContent>
|
|
3735
|
+
{categories.map((category, index) => (
|
|
3736
|
+
<SelectItem
|
|
3737
|
+
key={index}
|
|
3738
|
+
value={category.id}
|
|
3739
|
+
>
|
|
3740
|
+
{category.name}
|
|
3741
|
+
</SelectItem>
|
|
3742
|
+
))}
|
|
3743
|
+
</SelectContent>
|
|
3744
|
+
</Select>
|
|
3745
|
+
</div>
|
|
3746
|
+
|
|
3747
|
+
{filteredCommands.length === 0 ? (
|
|
3748
|
+
<div className="text-center py-8 text-muted-foreground">No commands found matching your criteria</div>
|
|
3749
|
+
) : (
|
|
3750
|
+
<div className="rounded-md border">
|
|
3751
|
+
<Table>
|
|
3752
|
+
<TableHeader>
|
|
3753
|
+
<TableRow>
|
|
3754
|
+
<TableHead className="w-[200px]">Command Name</TableHead>
|
|
3755
|
+
<TableHead>Command ID</TableHead>
|
|
3756
|
+
<TableHead className="text-right">Action</TableHead>
|
|
3757
|
+
</TableRow>
|
|
3758
|
+
</TableHeader>
|
|
3759
|
+
<TableBody>
|
|
3760
|
+
{filteredCommands.map(([name, commandId, index]) => (
|
|
3761
|
+
<TableRow key={index}>
|
|
3762
|
+
<TableCell className="font-medium">{formatCommandName(name)}</TableCell>
|
|
3763
|
+
<TableCell>
|
|
3764
|
+
<code className="relative rounded bg-muted px-[0.3rem] py-[0.2rem] font-mono text-sm font-semibold">{commandId}</code>
|
|
3765
|
+
</TableCell>
|
|
3766
|
+
<TableCell className="text-right">
|
|
3767
|
+
<Button
|
|
3768
|
+
variant="ghost"
|
|
3769
|
+
size="icon"
|
|
3770
|
+
onClick={() => setCopiedText(commandId)}
|
|
3771
|
+
>
|
|
3772
|
+
{copiedText === commandId ? <Check className="h-3 w-3 mr-1" /> : <Copy className="h-3 w-3 mr-1" />}
|
|
3773
|
+
</Button>
|
|
3774
|
+
</TableCell>
|
|
3775
|
+
</TableRow>
|
|
3776
|
+
))}
|
|
3777
|
+
</TableBody>
|
|
3778
|
+
</Table>
|
|
3779
|
+
</div>
|
|
3780
|
+
)}
|
|
3781
|
+
|
|
3782
|
+
<Card className="mt-8">
|
|
3783
|
+
<CardHeader>
|
|
3784
|
+
<CardTitle>How to Use</CardTitle>
|
|
3785
|
+
</CardHeader>
|
|
3786
|
+
<CardContent>
|
|
3787
|
+
<ol className="list-decimal pl-5 space-y-2">
|
|
3788
|
+
<li>Copy the command, then click on the menu button in the pane and select Add Command.</li>
|
|
3789
|
+
<li>Input the cmd, the label and where you would like it stored on your quick access panel.</li>
|
|
3790
|
+
<li>Enjoy.</li>
|
|
3791
|
+
</ol>
|
|
3792
|
+
</CardContent>
|
|
3793
|
+
</Card>
|
|
3794
|
+
</div>
|
|
3795
|
+
);
|
|
3796
|
+
}
|
|
3797
|
+
|
|
3798
|
+
|
|
3799
|
+
export const loader: LoaderFunction = async ({ request }) => {
|
|
3800
|
+
return null
|
|
3801
|
+
};
|
|
3802
|
+
|
|
3803
|
+
export const meta: MetaFunction = () => {
|
|
3804
|
+
return [
|
|
3805
|
+
{ title: "VSCode Cmds Reference - DevStack" },
|
|
3806
|
+
{ name: "description", content: "VSCode Extension" },
|
|
3807
|
+
];
|
|
3808
|
+
}; */
|
|
3809
|
+
|
|
3810
|
+
|
|
3811
|
+
|
|
3812
|
+
|
|
3813
|
+
|