- Command palette : Ctrl + Shift + P
- Quick open : Ctrl + P 🎁 ?
- Open recent : Ctrl + R
- Errors and warning : Ctrl + Shift + M
- Change language mode : Ctrl + K M
- Change theme : Ctrl + K Ctrl + T
- Customize Shortcuts : Ctrl + K Ctrl + S
- Open settings : Ctrl + ,
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
/* ==== DEMOS ! ==== */ | |
"update.mode": "none", | |
"extensions.autoCheckUpdates": true, | |
/* ==== SETTINGS ==== */ | |
"workbench.settings.editor": "json", | |
/* ==== EDITOR ==== */ | |
"editor.cursorSmoothCaretAnimation": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const DOG_URL = "https://dog.ceo/api/breeds/image/random"; | |
// console.log(DOG_URL); | |
// const promise = fetch(DOG_URL); | |
const doggos = document.querySelector(".doggos"); | |
// console.log(promise); | |
function addNewDoggo() { |