+ 1
What are the best helpful packages in Sublime Text 3 code editor to code faster for php and HTML ?
I need some packages that can be helpful in website design and programming.
4 ответов
+ 3
Emmet, LiveStyle, LiveEdit
+ 1
A little info of them will be great..
+ 1
Emmet helps to speed up writing code on HTML and CSS. For example you write
p.txt#new>ul>li*3
and click the tab and it gives out a:
<p class="txt" id="new">
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</p>
Livedit and Livestyle is needed when you opened the site in the browser and you can change it without saving the code. If you do not understand then here's the link to the official website: http://livestyle.io
0
thank you @Adilet.. Really helpful tips...
Is there a extension for Intellisense like in visual studio for seing function variables while typing a function or method?