mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
feat(cursor): enable native tabs and setup keybindings
This commit is contained in:
@@ -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
|
// MARK: Save
|
||||||
// ===========================================================================
|
// ===========================================================================
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -23,7 +23,8 @@
|
|||||||
//
|
//
|
||||||
"window.commandCenter": true,
|
"window.commandCenter": true,
|
||||||
"window.customTitleBarVisibility": "auto",
|
"window.customTitleBarVisibility": "auto",
|
||||||
"window.nativeFullScreen": false,
|
"window.nativeFullScreen": false, // Does not work when nativeTabs are enabled.
|
||||||
|
"window.nativeTabs": true,
|
||||||
"workbench.activityBar.location": "top",
|
"workbench.activityBar.location": "top",
|
||||||
//
|
//
|
||||||
// ===========================================================================
|
// ===========================================================================
|
||||||
|
|||||||
Reference in New Issue
Block a user