Source: http://ipestov.com/the-best-plugins-for-sublime-text/

Good day, everyone! I tried to collect the best ST plugins, which really allows to improve your workflow. I searched many sites and here's what I did. 

WebInspector

Amazing tool for debagging JavaScript, the full-fledged inspector of a code for Sublime. Features: breakpoints for project stored in user settings with absolute paths, console, debugger steps and breakpoints, stack trace. All this works with a bang! And still there is Fireplay from Mozilla, which allows to be connected to Firefox Developer tools and the simplest debagger JSHint.

Emmet

One of the most popular plugins for editors. Emmet, a former Zen Coding is also one of the most efficient methods of increasing the productivity of web developers. After pressing on the Tab key Emmet converts a simple shortening in volume code snippets for HTML and CSS. Also, I want to mention Hayaku - a collection of convenient abbreviation for cascading style sheets.

Video with the best techniques from the author of the project:

Git

The essence of this plugin is clear from the name - the opportunity to work with Git directly in your favorite editor. This way of working with Git will allow you to save a lot of time. First: you don't have to constantly switch between the Sublime and the terminal. Secondly: there is a good tag auto-complete, and instead of git add-A, it is enough to write add. Thirdly: there are such things as Quick commit, witch one quickcommand adds all changes and commit them.

If from Git you only need a opportunity of take content from remote repositories, then I recomend a Nettuts+ Fetch.

There is Glue, that displays at the bottom the small window, where you can write on the Shell. Due to this, now in your editor will be available not only Git...

GitGutter & Modific

These plugins highlights the rows changed by the last commit, in other words diff tools in real-time.

EditorConfig

EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs. The EditorConfig project consists of a file format for defining coding styles and a collection of text editor plugins that enable editors to read the file format and adhere to defined styles. Example of .editorconfig file:

# top-most EditorConfig file
root = true # Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true # 4 space indentation
[*.py]
indent_style = space
indent_size = 4 # Tab indentation (no size specified)
[*.js]
indent_style = tab # Indentation override for all JS under lib directory
[lib/**.js]
indent_style = space
indent_size = 2 # Matches the exact files either package.json or .travis.yml
[{package.json,.travis.yml}]
indent_style = space
indent_size = 2

Sublimall

Neat plugin, which synchronizes all the configurations (settings, plugins, open files, etc) between your Sublime Text editors. Everything is free, you only need to create an account. A simpler alternative is BufferScroll.

AllAutocomplete

Classic autocomple in Sublime Text only works with the current file. AllAutocomplete searches in all files open in the current window, which greatly simplifies the development process. Also there is a CodeIntel, which embodies the features of the IDE and brings "Code Intelligence" for a number of languages: JavaScript, Mason, XBL, XUL, RHTML, SCSS, Python, HTML, Ruby, Python3, XML, Sass, XSLT, Django, HTML5, Perl, CSS, Twig, Less, Smarty, Node.js, Tcl, TemplateToolkit, PHP.

SublimeREPL

Probably, one of the most useful plugins for developers. SublimeREPL directly in the editor run an interpreter for a whole lot of languages: Clojure, CoffeeScript, F#, Groovy, Haskell, Lua, MozRepl, NodeJS, Python, R, Ruby, Scala, shell.

DocBlockr

DocBlockr will become for you an effective tool for documenting code. After entering the /** and pressing the Tab key, the plugin automatically will parse any function and will prepare the appropriate template.

Floobits

Terrific extension for SublimeText, Vim, Emacs, IntelliJ IDEA, which allows developers to collaborate on code, and from different editors.

AutoFileName

Autocomplete path to files - is very convenient. Without wasting words.

ColorPicker

Usually, when we need a color palette we used to use Photoshop or Gimp. But full color picker can be available directly in your editor - Ctrl/Cmd + Shift + C. And there're a wonderful GutterColor and ColorHighlighter, that simplify orientation in the color codes: 

PlainTasks

Brilliant todo-list! All tasks are stored in files, so it's very convenient to bind tasks with appropriate project. The ability to create projects, assign tags, set the date. Competent user interface and shortcuts.

MarkdownEditing

Perhaps, the best plugin for work with Markdown: syntax highlight, abbreviations, autocomplete, color schemes, etc. As an alternative solution, you can try MarkdownPreview.

Finally

 

 


 

* In some repository indicates that the plugin is written under ST2, but I checked all and much of them use myself under ST3.

* I would not describe the number of plug-ins that perform actions on formatting, compilation, optimization, because I deeply believe that this is a task for Grunt, Gulp, Prepros or CodeKit.

[转]The Best Plugins for Sublime Text的更多相关文章

  1. Sublime Text 3 Install Markdown Preview Plugins

    Sublime Text 3 Install Markdown Preview Plugins. [TOC] 前言 什么是Markdown Markdown是一种可以使用普通文本编辑器编写的标记语言, ...

  2. Sublime text 入门学习资源篇及其基本使用方法

    Sublime text 学习资源篇 史上最性感的编辑器-sublimetext,插件, 学习资源 官网 http://www.sublimetext.com/ 插件 https://packagec ...

  3. Sublime Text:学习资源篇

    官网 http://www.sublimetext.com/ 插件 https://packagecontrol.io 教程 Sublime Text 全程指南 Sublime Text 2 入门及技 ...

  4. 【转】3 Essential Sublime Text Plugins for Node & JavaScript Developers

    原文转自:http://scottksmith.com/blog/2014/09/29/3-essential-sublime-text-plugins-for-node-and-javascript ...

  5. Essential Sublime Text Plugins

    Essential Sublime Text Plugins Add some killer tools to your arsenal. View them all at /repo/sublime ...

  6. sublime text plugins

    Sublime Text 插件,HTML+CSS+JAVASCRIPT+JSON快速格式化:  htmlpretty 快捷键:Ctrl+Shift+H Essential Sublime Text 2 ...

  7. Sublime Text 2配置文件详解

    Sublime Text 2是那种让人会一眼就爱上的编辑器,不仅GUI让人眼前一亮,功能更是没的说,拓展性目前来说也完全够用了,网上介绍软件的文章和推荐插件的文章也不少,而且很不错,大家可以去找找自己 ...

  8. 开发者最常用的 8 款 Sublime Text 3 插件

    转载于:http://www.itxuexiwang.com/a/liunxjishu/2016/0228/177.html?1456925631Sublime Text作为一个尽为人知的代码编辑器, ...

  9. Sublime Text插件:HTML-CSS-JS Prettify

    该插件依赖到nodejs环境 1.安装 在Sublime Text中,按下Ctrl+Shift+P调出命令面板; 输入install 调出 Install Package 选项并回车; 输入prett ...

随机推荐

  1. 如何学习ACM

    我想对未来的同学有几句话要说: 1 我们几乎没有noi上来的队员,大家只能依靠后期的更加刻苦的努力. 2 我们没有专业的班级或者机制形成职业ACM队伍,所以大家只能尽早的投入进来,用尽一切课余时间去训 ...

  2. Objective-C马路成魔【12-分类和协议】

    郝萌主倾心贡献.尊重作者的劳动成果,请勿转载. 假设文章对您有所帮助.欢迎给作者捐赠,支持郝萌主.捐赠数额任意,重在心意^_^ 我要捐赠: 点击捐赠 Cocos2d-X源代码下载:点我传送 分类与协议 ...

  3. Studio-Class Diagram

    UML Design Via Visual Studio-Class Diagram 用过几个建模设计工具,小的有staruml,大的有rational rose,EA.最后发现还是Visual St ...

  4. 前端学习笔记(zepto或jquery)——对li标签的相关操作(二)

    对li标签的相关操作——8种方式获取li标签的第一个元素的内容 1.alert($("ul>li").first().html());2.alert($('ul>li' ...

  5. 菜鸟学Java(二十一)——怎样更好的进行单元測试——JUnit

    測试在软件生命周期中的重要性,不用我多说想必大家也都很清楚.软件測试有许多分类,从測试的方法上可分为:黑盒測试.白盒測试.静态測试.动态測试等:从软件开发的过程分为:单元測试.集成測试.确认測试.验收 ...

  6. 网上收集的WebBrowser的Cookie操作

    原文:网上收集的WebBrowser的Cookie操作 1.WebBrowser设置Cookie Code highlighting produced by Actipro CodeHighlight ...

  7. Java之IO流基础流对象

    输入流和输出流是相对于内存设备而言 即将外设中的数据读取到内存中就是输入    将内存中的数据写入到外设中就是输出   字符流的由来:     其实就是:字节流读取文字字节数据后,不直接操作而是先查指 ...

  8. JavaScript中的作用域和声明提前

    [翻译]JavaScript中的作用域和声明提前 原文:http://www.adequatelygood.com/JavaScript-Scoping-and-Hoisting.html ===翻译 ...

  9. UpdateModel方法

    WebForm 对 MVC 说:能否借你的UpdateModel方法来用用? 背景 ASP.NET MVC的Controller有个很不错的方法:UpdataModel (相对应的还有TryUpdat ...

  10. UVA Graph Coloring

    主题如以下: Graph Coloring  You are to write a program that tries to find an optimal coloring for agiven ...