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 trial

CSS Treehouse Club: CSS My First Web Page Text Editors and External Style Sheets

James DiGiacomo
James DiGiacomo
701 Points

Automatic code completion is mentioned in a quiz but not in the video. Did I miss it and what is it?

On the quiz about text editing and external style sheets it asks about automatic code completion. I watched the video several times but did not see it. Can anyone shed some light on this?

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey James,

Automatic code completion is a feature of most Text Editors and IDEs. Basically, as you are typing out the code, it will offer up smart suggestions on what it believes you are typing. For example, if you have a really long-named variable, as you begin to type it out, the completion would show up and you just hit enter.

If you're using an IDE, many of the functions and methods will show up as completion options as you start to type the first few letters of the names.

As you move forward with your learning, this will make much more sense. In short, it saves time and helps out when the methods, variables, etc have really hard-to-remember-exactly names. :)

Keep Coding! :dizzy:

James DiGiacomo
James DiGiacomo
701 Points

Awesome, Thank you Jason.