Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Software Development
Programming
Speed Coding
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Markshall" data-source="post: 404044" data-attributes="member: 1872"><p>You should consider <a href="https://emmet.io/" target="_blank"><strong>checking out Emmet</strong></a>. It's a great plugin that I'm sure would be available on Sublime, I use it on Brackets.</p><p></p><p>It allows you to speed up your coding by writing shortcuts to code, so where you've wrote:</p><p>[code]<meta name="viewport" content="width=device-width, initial-scale=1">[/code]</p><p>In Emmet, you could write:</p><p>[code]meta:vp[/code]</p><p>...press Tab and it writes out the line for you.</p><p></p><p>It's handy if you already know how to write/structure those lines, it saves the whole boring routine of having to write them out each time.</p><p></p><p>You can also do things like</p><p>[code]div.lmao>ul>(li>a[href="index.html"])*3[/code]</p><p>And when you press tab, it would print out</p><p>[code]<div class="lmao"></p><p> <ul></p><p> <li><a href="index.html"></a></li></p><p> <li><a href="index.html"></a></li></p><p> <li><a href="index.html"></a></li></p><p> </ul></p><p></div>[/code]</p></blockquote><p></p>
[QUOTE="Markshall, post: 404044, member: 1872"] You should consider [URL='https://emmet.io/'][B]checking out Emmet[/B][/URL]. It's a great plugin that I'm sure would be available on Sublime, I use it on Brackets. It allows you to speed up your coding by writing shortcuts to code, so where you've wrote: [code]<meta name="viewport" content="width=device-width, initial-scale=1">[/code] In Emmet, you could write: [code]meta:vp[/code] ...press Tab and it writes out the line for you. It's handy if you already know how to write/structure those lines, it saves the whole boring routine of having to write them out each time. You can also do things like [code]div.lmao>ul>(li>a[href="index.html"])*3[/code] And when you press tab, it would print out [code]<div class="lmao"> <ul> <li><a href="index.html"></a></li> <li><a href="index.html"></a></li> <li><a href="index.html"></a></li> </ul> </div>[/code] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Software Development
Programming
Speed Coding
Top