My top 10 Sublime Text 3 plugins
I don't know how I survived before knowing Sublime Text. For me, there is no better editor. It's slim, fast and incredibly adaptable. Not at least because of the thousands of packages available. These ones are my favorites
Sublime CodeIntel
The holy grail for Sublime Text. Autocomplete of functions, methods and variables spread over files. Direct jumps to definitions and function call tooltips. A sublime text project is required for that.
Emmet
Emmet was known as "zencoding" before. It allows you, to use abbreviations to create lightning fast HTML- or CSS-Code. A line like:
"https://maurice-renck.de/en/tags/tag:myId">\#myId>ul.classname>li*4
will create the following HTML-Code:
<div id="myID“>
classname
">
<li>li>
<li>li>
<li>li>
<li>li>
ul>
div>
GutterColor
Whenever you define a color in your css-file, GutterColor will show this color right next to the linenumber. I am eagerly awaiting support for sass and less variables.
MarkdownEditing
I already wrote about my markdown-setup here. The Plugin offers some extended markdown-functions and a nice style.
SCSS
Because I like using scss/compass, I installed this Plugin to get the syntax-highlighting.
Handlebars
I use Handlebars as a template-engine for a lot of my JavaScript-projects. To get propper highlighting I use this Plugin.
jQuery
I think I do not need to tell you a lot about this. This plugin offers a lot of snippets which will help you working with jQuery.
DocBlockr
To document my sourcecode, I use DocBlockr (yet). If you type in the shortcut for DocBlockr right before a function, it will create a dummy-documentation-comment and fill in variables needed by the function automaticly.
Gist
There are always little code-snippets, which can be used in different projects. To store those, I use Gists on GitHub. Gists can be private or public available. This plugin helps you creating and receiving them. It also allows you to search through plubic gists.
PreDawn
The theme of my choice is PreDown. You have to take a look at it, because it's hard to describe.
Installation
All packages can be installed via Package Control. You can read here how to do so.
And you?
You also use sublime text and know some really good plugins? Post your list in the comments or send me a link to your blogpost. I will link them here.