Sort Lines in Sublime Text
Sublime Text allows you to quickly sort lines alphabetically. Select the lines you want to sort and choose Edit > Sort Lines. You can also...
100 articles
Sublime Text allows you to quickly sort lines alphabetically. Select the lines you want to sort and choose Edit > Sort Lines. You can also...
Sublime Text with Emmet allows you to code faster by typing an abbreviation and then expanding the abbreviation with the Tab key. To...
Sublime Text allows you to quickly join lines together. Select the lines and hit Cmd–J (Mac) or Ctrl–J (Windows). If nothing is...
While you can place multiple text cursors in Sublime Text with Cmd–Click (Mac) or Ctrl–Click (Windows), here's another technique that comes...
Sublime Text with Emmet allows you to quickly adjust numbers in your code. For example, you want to change 20px to 22px. Instead of...
Sublime text allows you to quickly convert selected text to upper case or lower case. To convert to upper case: In quick succession,...
Comments tell the web browser to ignore a section of code. We use them to document and debug our code. To comment out one or more lines of...
Sublime Text with Emmet allows you to automatically update width and height attributes on img tags. Place the cursor inside an img tag and...
In Sublime Text, you can select lines with a keystroke. Hit Cmd–L (Mac) or Ctrl–L (Windows) to select the current line. Repeat the...
Stuck between choosing a career in web development or data science? This comprehensive guide by Noble Desktop breaks down everything you...
Explore the three basic approaches to learning web development: self-study online, taking classes at a training school, or pursuing a...
Python, one of the most widely used programming languages around the globe, offers a variety of frameworks to simplify and expedite the...
With Sublime Text you can quickly select everything inside an HTML tag. Just click anywhere inside the tag and hit Cmd–Shift–A (Mac) or...
Get an edge in data science by mastering the R programming language, known for its robust capabilities in data analysis, organization, and...
To jump to the beginning or end of the line, hold Cmd and hit Left or Right Arrow (Mac). Windows users, hit Home to jump to the beginning...
In Sublime Text, you can quickly jump to any line in the code. Hit Ctrl–G (Mac and Windows). Type in a line number and hit Return/Enter to...
In an HTML file, type link and hit Tab to expand to <link rel="stylesheet" href="">. Type the URL of the desired CSS file. Use this tip...
Looking to pivot into a tech career without a four-year degree? This comprehensive guide provides detailed insights into coding bootcamps,...
You can create a tag with a class or ID. For example, if you type p.info and hit Tab, Emmet expands p.info to <p class="info"></p>. If...
In HTML or CSS, hit Cmd–Shift–Period (Mac) or Ctrl–Shift–Period (Windows) to select the next item. To select the previous item, hit...
Unlock your potential in the tech world with coding bootcamps that offer immersive learning experiences and equip you with the technical...
To ensure special characters display properly on your website, do one of the following: Add <meta charset="UTF-8"> into the <head> of...
Sublime Text remembers the last 15 items you’ve copied and you can paste any one of them! Hit Cmd–Option–V (Mac) or Ctrl–K then Ctrl–V...
This tip is really useful for building HTML emails because HTML emails can become very cluttered with inline CSS. To fold all HTML...