dsh-vscode-mode 0.5.2 → 0.5.3

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/lib/index.js CHANGED
@@ -125,6 +125,7 @@ const KEYBINDING_DEFAULTS = {
125
125
  "edrv.quickOpen": "Ctrl+P",
126
126
  "edrv.toggleSidebar": "Ctrl+B",
127
127
  "edrv.searchInFiles": "Ctrl+Shift+F",
128
+ "edrv.toggleMarkdownPreview": "Ctrl+Shift+V",
128
129
  "edrv.navigateBack": "Alt+ArrowLeft|Ctrl+Alt+-",
129
130
  "edrv.navigateForward": "Alt+ArrowRight|Ctrl+Shift+-",
130
131
  "edrv.nextTab": "Ctrl+Alt+ArrowRight|Ctrl+PageDown",
@@ -546,6 +547,7 @@ async function installOpenSettingsSection(ctx, ns, entry, hooks, loader = loadSe
546
547
  fileOpenTool: deps.z.string().default(FILE_OPEN_DEFAULT),
547
548
  keybindings: deps.z.object(keybindingsShape(deps.z)).default({ ...KEYBINDING_DEFAULTS }),
548
549
  sidebarMinWidth: deps.z.number().default(300),
550
+ maxOpenEditors: deps.z.number().default(10),
549
551
  integrationBaseUrl: deps.z.string().default(INTEGRATION_BASE_DEFAULT),
550
552
  aiInline: deps.z.boolean().default(AI_CONFIG_DEFAULT.enabled),
551
553
  aiProvider: deps.z.string().default(AI_CONFIG_DEFAULT.provider),