Commands & settings

PaneCrew doesn't have its own CLI flags or a hardcoded shortcut registry. As a VS Code extension, it contributes ordinary VS Code commands and settings, and keyboard shortcuts are bound the same way you'd bind any other command: through VS Code's ownkeybindings.json.

Commands

The VS Code command palette open on 'PaneCrew: Save Current Grid as Preset...', one of the commands from the table below

Every command in this table shows up the same way: type its title into the Command Palette.

Every command below is available from the Command Palette (⌘⇧P /Ctrl+Shift+P) by typing its title. To bind a keyboard shortcut to one, open the Keyboard Shortcuts editor (⌘K ⌘S / Ctrl+K Ctrl+S), search for the command title, and assign a key — or add an entry directly to keybindings.json:

{
  "key": "ctrl+alt+g",
  "command": "panecrew.openProjectGrid"
}
CommandCommand ID
PaneCrew: Open Project Grid…panecrew.openProjectGrid
PaneCrew: Set Default Projects Folder…panecrew.setDefaultProjectsFolder
PaneCrew: Add Folder to Grid…panecrew.addFolderToGrid
PaneCrew: Set Grid Template…panecrew.setGridTemplate
PaneCrew: Apply Compact Lookpanecrew.applyCompactLook
PaneCrew: Restore Default VS Code Lookpanecrew.restoreLook
PaneCrew: Save Current Grid as Preset…panecrew.savePreset
PaneCrew: Load Grid Preset…panecrew.loadPreset
PaneCrew: Delete Grid Preset…panecrew.deletePreset
PaneCrew: Search in Folder…panecrew.searchInFolder
PaneCrew: Refresh Explorerpanecrew.refreshExplorer
PaneCrew: Set PaneCrew Theme…panecrew.setPaneCrewTheme
PaneCrew: Rate PaneCrew / Give Feedback…panecrew.rateOrGiveFeedback

Settings

Configurable from the Settings editor (search "PaneCrew") or directly insettings.json:

SettingDefaultDescription
panecrew.grid.defaultColumns2Default column count for a new project grid.
panecrew.grid.defaultRows2Default row count for a new project grid.
panecrew.grid.defaultProjectsFolder""Folder the file picker opens in for "Open Project Grid…", "Add Folder to Grid…", and "Open Project in New Window…". Empty means VS Code's own default location. Set it with a folder picker via the "PaneCrew: Set Default Projects Folder…" command instead of typing a path here.
panecrew.compactLook.hideStatusBartrueWhether Compact Look hides the status bar.
panecrew.compactLook.hideMinimaptrueWhether Compact Look hides the editor minimap.
panecrew.git.showDecorationstrueShow git status badges/colors in the PaneCrew explorer.

Compact Look never hides the activity bar, regardless of settings — that row stays visible in PaneCrew's standard look by design.

The command palette open on 'PaneCrew: Apply Compact Look', with panecrew.compactLook.hideStatusBar and panecrew.compactLook.hideMinimap controlling what it hides

Compact Look in action — the two settings above control exactly what it hides.