[转]The Best Plugins for Sublime Text
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
- Sublime SFTP
- CTags - CTags support fo Sublime.
- SideBarEnhancement - many additional features of the context menu in the sidebar.
- ActualVim - Vim in Sublime - two favorite editors in one.
- SublimeLinter - Inline lint highlighting for C/C++, Java, Python, PHP, JS, HTML, CSS, etc.
- CSScomb - CSS coding style formatter.
- FixMyJS, Jsfmt and JsFormat - JS/JSON coding style formatters.
- AStyleFormatter - C/C++/C#/Java coding style formatters.
- SVG-Snippets - set of custom SVG snippets.
- Inc-Dec-Value - increase / decrease of numbers, dates, hex color values, etc.
- Trailing Spaces - highlight trailing spaces and delete them in a flash.
- Alignment - dead-simple alignment of multi-line selections and multiple selections for author of Package Control.
- Placeholders - collection of snippets with text, images, list, table, etc.
- ApplySyntax - detect syntax on fly.
- StylToken - allows to highlight certain pieces of text with different colors (similar to notepad++ "Style token" functionality).
- EasyMotion - quickly jump to any character in the visible area of the active view.
- ZenTabs and AdvancedNewFile - improve default tabs appearance and file creation.
- EncodingHelper - guess encoding of files, show in status bar, convert to UTF-8 from a variete of encodings.
- Gist - synchronize GitHub Gist with Sublime (ST2).
- Clipboard History (ST2) - keep a history of your clipboard items.
- Themes and color schemes:
- Soda
- Spacegray
- Flatland
- Tomorrow
- Base 16
- Solarized
- Predawn
- For all other preferences exist Color Schemes and Сolorsublime.
* 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的更多相关文章
- Sublime Text 3 Install Markdown Preview Plugins
Sublime Text 3 Install Markdown Preview Plugins. [TOC] 前言 什么是Markdown Markdown是一种可以使用普通文本编辑器编写的标记语言, ...
- Sublime text 入门学习资源篇及其基本使用方法
Sublime text 学习资源篇 史上最性感的编辑器-sublimetext,插件, 学习资源 官网 http://www.sublimetext.com/ 插件 https://packagec ...
- Sublime Text:学习资源篇
官网 http://www.sublimetext.com/ 插件 https://packagecontrol.io 教程 Sublime Text 全程指南 Sublime Text 2 入门及技 ...
- 【转】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 ...
- Essential Sublime Text Plugins
Essential Sublime Text Plugins Add some killer tools to your arsenal. View them all at /repo/sublime ...
- sublime text plugins
Sublime Text 插件,HTML+CSS+JAVASCRIPT+JSON快速格式化: htmlpretty 快捷键:Ctrl+Shift+H Essential Sublime Text 2 ...
- Sublime Text 2配置文件详解
Sublime Text 2是那种让人会一眼就爱上的编辑器,不仅GUI让人眼前一亮,功能更是没的说,拓展性目前来说也完全够用了,网上介绍软件的文章和推荐插件的文章也不少,而且很不错,大家可以去找找自己 ...
- 开发者最常用的 8 款 Sublime Text 3 插件
转载于:http://www.itxuexiwang.com/a/liunxjishu/2016/0228/177.html?1456925631Sublime Text作为一个尽为人知的代码编辑器, ...
- Sublime Text插件:HTML-CSS-JS Prettify
该插件依赖到nodejs环境 1.安装 在Sublime Text中,按下Ctrl+Shift+P调出命令面板; 输入install 调出 Install Package 选项并回车; 输入prett ...
随机推荐
- 【Linux】Vim编辑器-批量注释与反注释
[-] vim编辑器---批量注释与反注释 方法一 块选择模式 插入注释 取消注释 方法二 替换命令 批量注释 取消注释 实例演示 vim编辑器---批量注释与反注释 在使用vim编写代码的时候, ...
- canvas绘制贝塞尔曲线
原文:canvas绘制贝塞尔曲线 1.绘制二次方贝塞尔曲线 quadraticCurveTo(cp1x,cp1y,x,y); 其中参数cp1x和cp1y是控制点的坐标,x和y是终点坐标 数学公式表示如 ...
- js模块开发
js模块开发(一) 现在嵌入页面里面的javascript代码越来越复杂,于是可能依赖也越来越严重,使用别人开发的js也越来越多,于是在理想情况下,我们只需要实现核心的业务逻辑,其他都可以加载别人已经 ...
- springmvc继承activemq(原创)
1.加入jar包 我项目是用maven构建的,所以这里就给大家贴一下配置了,具体jar大家可以参看下Activemq分类中的文章 <project xmlns="http://mave ...
- Codeforces Round #267 (Div. 2)D(DFS+单词hash+简单DP)
D. Fedor and Essay time limit per test 2 seconds memory limit per test 256 megabytes input standard ...
- 【转】关于“ORA-01653: 表 SYS.AUD$ 无法通过 128 (在表空间 SYSTEM 中) 扩展”的错误
SQL*Plus: Release 11.1.0.6.0 - Production on 星期一 5月 17 18:31:08 2010 Copyright (c) 1982, 2007, Oracl ...
- 个人学习JQ插件编写成果:little酷炫的图片滑动切换效果
工作一个多月了,好久没来冒冒泡了,看了@wayong的JQ插件教程,自己编写了一个模仿拉勾网首页广告栏滑动特效的JQ插件,现在跟朋友们分享分享! 先上demo链接:http://runjs.cn/de ...
- C# 笔试题,看你会几道题
1. Which interface you need to implement to support for each? IEnumerator IEnumerable ICompare ...
- windows批处理研究_不断更新
windows批处理脚本(bat),很麻烦,主要原因有: 1.bat脚本编写的风格,太古老,调用方式太奇怪. 2.windows自身运行机制就对批处理脚本有兼容性问题.比如,鼠标双击打开一个bat,与 ...
- 快速构建Windows 8风格应用28-临时应用数据
原文:快速构建Windows 8风格应用28-临时应用数据 本篇博文主要介绍临时应用数据概览.如何构建临时应用数据. 一.临时应用数据概览 临时应用数据相当于网页中缓存,这些数据文件是不能够漫游的,并 ...