Ctrl + Shift + P : Show All CommandsCtrl + Shift + F : Global SearchCtrl + P : Go to FileWhen in doubt, check Keyboard Shortcuts (
keybindings.js). Open withCtrl+K,Ctrl+S
File > Preferences > Settings. Add following line to settings.json:
"editor.rulers": [80]
You can add persistent file associations for language highlighting to your settings.json file like this
Link.
// Place your settings in this file to overwrite the default settings
{
"some_setting": custom_value,
...
"files.associations": {
"*.jsx": "javascript",
"Jenkinsfile*": "groovy"
}
}