One can use the extension Toggle to create the keyboard shortcut for wrap tabs as follows.
keybindings.json
file. It will create "Shift
+Alt
+W
" keybinding to toggle the wrapping of tabs:{
"key": "shift+alt+w",
"command": "toggle",
"args": {
"id": "wrapTabs",
"value": [
{
"workbench.editor.wrapTabs": true
},
{
"workbench.editor.wrapTabs": false
}
]
}
},