Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAndrew Folts
14,238 PointsDoes Treehouse have a list of Workspace Mac shortcuts (i.e. select next tag, indent lines, etc)?
I know there were some in previous videos, but I can't seem to find them. Thanks!
2 Answers
jobbol
Full Stack JavaScript Techdegree Student 17,885 PointsBasic stuff
I couldn't find a complete list anywhere on Treehouse. In the description of the videos in the course there were a few ones included but it's very basic stuff.
/* Save Files */ CMD + S
/* Undo Changes */ CMD + Z
/* Refresh Pages */ CMD + R
/* Type Curly Braces */ Shift + [ and Shift + ]
/* Indent Lines */ Tab
/* Indent Lines */ CMD + [ or CMD + ]
/* Copy */ CMD + C
/* Cut */ CMD + X
/* Paste */ CMD + V
/* Move Across Text */ CMD + Arrow Key
/* Highlight Text */ CMD + Shift + Arrow Key
Here's also a Mac specific list on general text editing.
Getting more advanced
But what you're asking for, "select next tag" is something only an advanced editor can do. Sublime for instance. In which case you should probably be using something like:
- Sublime Text (treehouse uses this one)
- Brackets
- Atom
Andrew Folts
14,238 PointsThanks, much appreciated!