feat(cursor): enable native tabs and setup keybindings

This commit is contained in:
2025-03-05 09:29:42 +00:00
parent d8d77c5f50
commit 55d6c9ccad
2 changed files with 31 additions and 1 deletions

View File

@@ -31,6 +31,35 @@
},
//
// ===========================================================================
// MARK: Window tabs
// ===========================================================================
//
{
"key": "ctrl+z ctrl+n",
"command": "workbench.action.showNextWindowTab"
},
{
"key": "ctrl+z ctrl+p",
"command": "workbench.action.showPreviousWindowTab"
},
{
"key": "ctrl+z ctrl+c",
"command": "workbench.action.newWindowTab"
},
{
"key": "ctrl+z ctrl+j",
"command": "workbench.action.mergeAllWindowTabs"
},
{
"key": "ctrl+z ctrl+t",
"command": "workbench.action.moveWindowTabToNewWindow"
},
{
"key": "ctrl+z ctrl+z",
"command": "workbench.action.toggleWindowTabsBar"
},
//
// ===========================================================================
// MARK: Save
// ===========================================================================
//

View File

@@ -23,7 +23,8 @@
//
"window.commandCenter": true,
"window.customTitleBarVisibility": "auto",
"window.nativeFullScreen": false,
"window.nativeFullScreen": false, // Does not work when nativeTabs are enabled.
"window.nativeTabs": true,
"workbench.activityBar.location": "top",
//
// ===========================================================================