DEV Community

Genessis Jimenez
Genessis Jimenez

Posted on

Can i have a Chrome tab on vscode?

What I'm looking for is something similar to this but with more features

Top comments (3)

Collapse
 
eaziied profile image
Zied EA

You have to make some changes to keybindings.json. Use the Command Palette with CTRL+SHIFT+P, enter "Preferences: Open Keyboard Shortcuts (JSON)", and hit Enter.

Then add to the end of the file:

[
    // ...
    {
        "key": "ctrl+tab",
        "command": "workbench.action.nextEditor"
    },
    {
        "key": "ctrl+shift+tab",
        "command": "workbench.action.previousEditor"
    }
]
Collapse
 
schemesonic profile image
Haldun YILDIZ

Currently not, also not in the near feature.

Source

Collapse
 
0ctober profile image
0ctober

have you tested this extension : Browser Preview ?