Skip to content

Instantly share code, notes, and snippets.

View rcdaniel's full-sized avatar
🎯
Focusing

Daniel Ramírez Concepción rcdaniel

🎯
Focusing
View GitHub Profile
@yodra
yodra / VSCodeShortCuts.md
Last active June 26, 2025 00:23
Cheat sheet VSCode Shortcuts basic
Command Keybinding Mac Keyboard
add line comment ctrl + K and C ⌘K and C
copy line down shift + alt + ↓ ⇧⌘↓
copy line up shift + alt + ↑ ⇧⌘↑
format document shift + alt + F ⇧⌥F
go finish line ctrl + → ⌘→
go start line ctrl + ← ⌘←
go finish word alt + → ⌥→
go start word alt + ← ⌥←
// ###################################################################
// Arrow function
function sumar(num1, num2) {
return num1 + num2;
}
const sumar = (num1, num2) => num1 + num2;