this post was submitted on 13 Jul 2023
23 points (96.0% liked)
Web Development
3434 readers
1 users here now
Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development
What is web development?
Web development is the process of creating websites or web applications
Rules/Guidelines
- Follow the programming.dev site rules
- Keep content related to web development
- If what you're posting relates to one of the related communities, crosspost it into there to help them grow
- If youre posting an article older than two years put the year it was made in brackets after the title
Related Communities
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
Wormhole
Some webdev blogs
Not sure what to post in here? Want some web development related things to read?
Heres a couple blogs that have web development related content
- https://frontendfoc.us/ - [RSS]
- https://wesbos.com/blog
- https://davidwalsh.name/ - [RSS]
- https://www.nngroup.com/articles/
- https://sia.codes/posts/ - [RSS]
- https://www.smashingmagazine.com/ - [RSS]
- https://www.bennadel.com/ - [RSS]
- https://web.dev/ - [RSS]
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
A few shortcuts that I use a lot are really basic, but very powerful. Frankly, I'm always surprised when I'm pairing with a co-worker and they don't know about them.
Cmd+p
to open the fuzzy file finder search. This is a huge one and I'm shocked when I see people hunting through the file explorer to find the file they are looking for.Cmd+shift+f
to open the fuzzy workspace text search. Basically grep your workspace for code.F1
orCmd+p+>
- Action menu. So many good actions in here from running formatters, to toggling light/dark mode, reload window, etc.Ctrl+r
(mac) - Fuzzy search for recently opened projects/files. HittingEnter
opens it in same window orCmd+Enter
opens in new window. I use this sooo much and most people don't know about it.Cmd+n
to open a new vscode window. Although I rarely use this as I almost always just useCtrl+r
.VSCode has great fuzzy search and if you use it, it lets you move around your code and codebases so much faster.
Installing CLI tools so when in the terminal, you can run
code <path>
to open vscode at that working directory.Can't remember the last time I used
File->Open
to open a new project window.Cmd+b
to open/close the left drawerCmd+shift+e
to open the file explorer.