Advertisement
Yunga

SublimeText Plugins

May 7th, 2014
491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.04 KB | None | 0 0
  1. # Sublime text - Random Notes
  2.  
  3. A few notes to help me get started with Sublime Text.
  4.  
  5. - Sublime: http://SublimeText.com/
  6. - Package Control: http://sublime.wbond.net/browse
  7. - Documentation: http://www.sublimetext.com/docs/3/
  8. - UnOfficial Documentation: http://docs.sublimetext.info/en/latest/
  9. - Perfect Workflow: http://courses.tutsplus.com/courses/perfect-workflow-in-sublime-text-2
  10.  
  11. ## Sample Preferences.sublime-settings
  12.  
  13. ```json
  14. {
  15. // Files
  16. "default_encoding": "UTF-8",
  17. "default_line_ending": "unix",
  18. "detect_indentation": true,
  19. "enable_hexadecimal_encoding": true, // files containing null bytes
  20. "always_prompt_for_file_reload": true,
  21.  
  22. // Edit, whitespace, indent
  23. "word_separators": "._/\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?",
  24. "auto_indent": true,
  25. "tab_size": 4,
  26. "use_tab_stops": false,
  27. "translate_tabs_to_spaces": false,
  28. "trim_automatic_white_space": false,
  29. "trim_trailing_white_space_on_save": true,
  30. "smart_indent": true,
  31. "indent_to_bracket": true,
  32. "trim_automatic_white_space": false, // inserted by auto-indent
  33. "draw_indent_guides": true,
  34. "ensure_newline_at_eof_on_save": true,
  35. "indent_guide_options": [ "draw_active" ],
  36. "draw_white_space": "all",
  37.  
  38. // Visuals
  39. "font_face": "Consolas",
  40. "font_size": 10,
  41.  
  42. "word_wrap": false,
  43. "overlay_scroll_bars": "enabled",
  44.  
  45. "highlight_line": true,
  46.  
  47. "caret_extra_bottom": 3,
  48. "caret_extra_top": 3,
  49. "caret_extra_width": 1,
  50. "caret_style": "phase",
  51.  
  52. "draw_minimap_border": true,
  53. "always_show_minimap_viewport": true,
  54.  
  55. "gutter": true,
  56. "margin": 0, // between gutter and text
  57. "line_numbers": true,
  58. "fold_buttons": true,
  59. "fade_fold_buttons": false,
  60.  
  61. "rulers": [ 80, 128 ],
  62.  
  63. "bold_folder_labels": true, // sidebar
  64. "show_encoding": true, // status bar
  65. "show_line_endings": true,
  66. "highlight_modified_tabs": true, // tabs
  67. "show_tab_close_buttons": true,
  68.  
  69. "ignored_packages": ["Vintage"],
  70. }
  71. ```
  72.  
  73.  
  74. ## Keyboard Shortcuts
  75.  
  76. If there's one shortcut you have to remember, get this one:
  77. ctrl+shift+p Command palette
  78.  
  79. ### Interface
  80. f11 "toggle_full_screen"
  81. shift+f11 "toggle_distraction_free"
  82. ctrl+k ctrl+b "toggle_side_bar"
  83. ctrl++ "increase_font_size"
  84. ctrl+- "decrease_font_size"
  85.  
  86. ### Copy/paste
  87. ctrl+c "copy" (current line if no selection)
  88. ctrl+x "cut" (current line if no selection)
  89. ctrl+shift+v "paste_and_indent"
  90. ctrl+k, ctrl+v "paste_from_history"
  91.  
  92. ### Undo/Redo/Repeat
  93. ctrl+z "undo"
  94. ctrl+u "soft_undo" (moves cursor first)
  95. ctrl+shift+z "redo"
  96. ctrl+shift+u "soft_redo" (moves cursor first)
  97. ctrl+y "redo_or_repeat"
  98.  
  99. ### Selection/Cursors
  100. ctrl+a "select_all"
  101. ctrl+l "expand_selection" "to": "line" (select line, and moves down)
  102. ctrl+shift+m "expand_selection" "to": "brackets"
  103. ctrl+shift+space "expand_selection" "to": "scope"
  104. ctrl+d "find_under_expand" (add next occurrence of current word to selection)
  105. ctrl+k ctrl+d "find_under_expand_skip" (skip occurence)
  106. ctrl+shift+l "split_selection_into_lines" (split the selected block one cursor per line)
  107.  
  108. ctrl+alt+up add cursor up
  109. ctrl+alt+down add cursor down
  110.  
  111. ### Search
  112. ctrl+f "show_panel" "panel": "find"
  113. ctrl+shift+f "show_panel" "panel": "find_in_files"
  114. ctrl+i "show_panel" "panel": "incremental_find"
  115. ctrl+shift+i "show_panel" "panel": "incremental_find" "reverse"
  116. f3 "find_next"
  117. shift+f3 "find_prev"
  118. ctrl+f3 "find_under"
  119. ctrl+shift+f3 "find_under_prev"
  120. alt+f3 "find_all_under" (add all occurrences to selection, with cursors)
  121. ctrl+h "show_panel" "panel": "replace"
  122.  
  123. ### Jump to
  124. ctrl+p Goto anything, #Fuzzy Matching, :Line nĀ°, @Symbol
  125. ctrl+; Goto word in current file. (Same as ctrl+p #)
  126. ctrl+g Goto line (Same as ctrl+p :)
  127. ctrl+r Goto symbols (Same as ctrl+p @)
  128. ctrl+m "move_to" enclosing brackets
  129. alt+- "jump_back"
  130. alt+shift+- "jump_forward"
  131.  
  132. ### Bookmarks
  133. f2 "next_bookmark"
  134. shift+f2 "prev_bookmark"
  135. ctrl+f2 "toggle_bookmark"
  136. ctrl+shift+f2 "clear_bookmarks"
  137. alt+f2 "select_all_bookmarks"
  138.  
  139. ### Spelling
  140. f6 "toggle_setting" "spell_check"
  141. ctrl+f6 "next_misspelling"
  142. ctrl+shift+f6 "prev_misspelling"
  143.  
  144. ### Windows Layout/Tabs
  145. alt+shift+1/2/3/4 "set_layout" 1, 2, 3, 4 columns
  146. alt+shift+5 "set_layout" grid 4
  147. alt+shit+8/9 "set_layout" 2 or 3 rows
  148.  
  149. ctrl+0 "focus_side_bar"
  150. ctrl+1/2/3... "focus_group"
  151. ctrl+shift+1/2/3... "move_to_group"
  152.  
  153. ctrl+pgup "next_view"
  154. ctrl+pgdown "prev_view"
  155. ctrl+tab "next_view_in_stack"
  156. ctrl+shift+tab "prev_view_in_stack"
  157.  
  158. ctrl+shift+t "reopen_last_file"
  159.  
  160. ### Macros
  161. ctrl+q "toggle_record_macro"
  162. ctrl+shift+q "run_macro"
  163.  
  164. ### Editing
  165. ctrl+k, ctrl+u "upper_case"
  166. ctrl+k, ctrl+l "lower_case"
  167. ctrl+j "join_lines"
  168. ctrl+shift+d "duplicate_line"
  169. ctrl+shift+k "Delete Line.sublime-macro"
  170.  
  171. ctrl+shift+up "swap_line_up" (move line/selection up one line)
  172. ctrl+shift+down "swap_line_down" (move line/selection down one line)
  173.  
  174. ctrl+/ "toggle_comment"
  175. ctrl+shift+/ "toggle_comment" "block"
  176.  
  177. ### Editor
  178. ctrl+shift+alt+p "show_scope_name" (in status bar)
  179.  
  180.  
  181. ## Packages
  182.  
  183. Some packages i've played with, they can all be installed from [Package Control](https://sublime.wbond.net/installation).
  184.  
  185. You can access most settings via the menu Preferences ā†’ Package Settings ā†’ ...
  186.  
  187. ### Editing
  188.  
  189. #### [Alignment](http://wbond.net/sublime_packages/alignment)
  190. Easy alignment of multiple selections and multi-line selections.
  191.  
  192. ctrl+alt+a "alignment"
  193.  
  194. #### [All Autocomplete](https://github.com/alienhard/SublimeAllAutocomplete)
  195. Extend Sublime Text 2 autocompletion to find matches in all open files of the current window.
  196.  
  197. #### [Color Highlighter](https://sublime.wbond.net/packages/Color%20Highlighter)
  198. ColorHighlighter is a plugin for the Sublime text 2 and 3, which underlays selected hexadecimal colorcodes (like "#FFFFFF", "rgb(255,255,255)", "white", etc.) with their real color. Also, plugin adds color picker to easily modify colors.
  199.  
  200. #### [ElasticTabstops](https://github.com/SublimeText/ElasticTabstops)
  201. Tab characters automatically adjust to keep adjacent lines aligned.
  202.  
  203. ctrl+alt+left "move_by_cells"
  204. ctrl+alt+right "move_by_cells"
  205. ctrl+alt+shift+left "move_by_cells"
  206. ctrl+alt+shift+right "move_by_cells"
  207.  
  208. #### [FavoriteFiles](https://github.com/facelessuser/FavoriteFiles)
  209. Sublime Text plugin to save favorite files.
  210.  
  211. Sample Default.sublime-keymap - User
  212. ```json
  213. [
  214. { "keys": ["ctrl+shift+o"], "command": "select_favorite_file" },
  215. ]
  216. ```
  217.  
  218. #### [Inc-Dec-Value](https://github.com/rmaksim/Sublime-Text-2-Inc-Dec-Value)
  219. Increase / decrease numbers, dates, hex color values, etc.
  220.  
  221. alt-up/down Increase/Decrease number/lowercase/Capitalize/UPPERCASE
  222. super+alt+up/down Increase all color values
  223. super+ctrl+up/down Switch from/to #colors/rgba() notations
  224.  
  225. #### [Open URL](https://github.com/noahcoad/open-url)
  226. Description: Open URLs, files, folders, or google text under the cursor or in selected text for Sublime Text.
  227.  
  228. ctrl+u Open URL
  229.  
  230. #### [SideBarEnhancements](https://github.com/titoBouzout/SideBarEnhancements)
  231. Enhancements to Sublime Text sidebar. Files and folders.
  232.  
  233. f12 Open current file with the default program
  234.  
  235. ### [StringEncode](https://github.com/colinta/SublimeStringEncode)
  236. Converts characters from one encoding to another using a transformation (think HTML entities, not character encodings).
  237.  
  238. ### Tools
  239.  
  240. #### [PlainTasks](https://github.com/aziz/PlainTasks)
  241. An opinionated todo-list plugin for Sublime Text editor (version 2 and 3)
  242.  
  243. ctrl+enter New Task
  244. ctrl+i New Task
  245. ctrl+d Un/Mark as Done
  246. alt+c Un/Mark as Cancelled
  247. alt+o Open ./filename
  248. ctrl+shift+a Archive task
  249. ctrl+r List of projects
  250.  
  251. Sample PlainTasks.sublime-settings - User
  252. ```json
  253. {
  254. "date_format": "(%y-%m-%d %H:%M:%S)",
  255. "tab_size": 4,
  256. "translate_tabs_to_spaces": false,
  257. }
  258. ```
  259.  
  260. #### [SublimeLinter](https://github.com/SublimeLinter/SublimeLinter3)
  261. Interactive code linting framework for Sublime Text 3
  262.  
  263. ctrl+k, l "sublimelinter_lint"
  264. ctrl+k, n "sublimelinter_goto_error" "direction": "next"
  265. ctrl+k, p "sublimelinter_goto_error" "direction": "previous"
  266. ctrl+k, a "sublimelinter_show_all_errors"
  267.  
  268. ### Languages
  269.  
  270. #### [AutoHotKey](https://github.com/robertcollier4/AutoHotkey)
  271. AutoHotkey AHK language package for SublimeText including syntax highlighting, comments toggling, auto-completions, build system definitions, commands for ahkrun, ahkcompile, ahkrunpiped.
  272.  
  273. #### [AutoItScript](https://github.com/AutoIt/SublimeAutoItScript)
  274. AutoItScript AU3 language package for SublimeText including syntax highlighting, comments toggling, auto-completions, build systems for run and compile, Tidy command, IncludeHelper command.
  275.  
  276. #### [CSS3_Syntax](https://github.com/y0ssar1an/CSS3_Syntax)
  277. Sublime Text package for CSS3 syntax highlighting.
  278.  
  279. #### [Emmet](https://github.com/sergeche/emmet-sublime)
  280. Emmet (ex-Zen Coding) for Sublime Text.
  281.  
  282. #### [HTML5](https://github.com/mrmartineau/HTML5)
  283. HTML5 bundle for Sublime Text
  284.  
  285. #### [MarkdownEditing](https://github.com/SublimeText-Markdown/MarkdownEditing)
  286. Powerful Markdown package for Sublime Text with better syntax understanding and good color schemes.
  287.  
  288. Sample Markdown.sublime-settings - User
  289. ```json
  290. {
  291. "translate_tabs_to_spaces": false,
  292. "trim_trailing_white_space_on_save": true,
  293.  
  294. // Layout
  295. "draw_centered": false,
  296. "word_wrap": false,
  297. "rulers": [ 80, 128 ],
  298.  
  299. // Line
  300. "line_numbers": true,
  301. "highlight_line": true,
  302.  
  303. "caret_style": "phase",
  304. }
  305. ```
  306.  
  307. #### [Markdown Preview](https://github.com/revolunet/sublimetext-markdown-preview)
  308. Markdown preview and build plugin for sublime text 2/3.
  309.  
  310. Sample Default.sublime-keymap - User
  311. ```json
  312. [
  313. { "keys": ["ctrl+shift+g"], "command": "markdown_preview", "args": {"target": "browser", "parser":"github"} },
  314. ]
  315. ```
  316.  
  317. #### [ModernPerl](https://github.com/Blaizer/ModernPerl-sublime)
  318. Perl syntax highlighting for Sublime Text that isn't outdated.
  319.  
  320. #### [PerlTidy](https://github.com/vifo/SublimePerlTidy)
  321. perltidy/Perl::Tidy plugin - A Perl script indenter and reformatter.
  322.  
  323. Note that if you use cygwin and symlinks for config files and `~/.perltidyrc`, make sure you use windows `mklink` command and not `ln` provided with cygwin.
  324.  
  325. ctrl+shift+t "perl_tidy"
  326.  
  327. #### [PowerShell](https://github.com/SublimeText/PowerShell)
  328. Support for the MS PowerShell 2 programming language.
  329.  
  330. #### [REG](https://github.com/robertcollier4/REG)
  331. Windows Registry Script (.reg) Language package for SublimeText. Includes syntax highlighting, comments toggling, declaration snippets, a build system to merge current reg file to registry, and a Jump To Reg Key command.
  332.  
  333. Sample REG.sublime-settings - User
  334. ```json
  335. {
  336. "RegKeyJumpCmd": ["C:\\Program Files (x86)\\RegAlyzer\\RegAlyzer.exe"]
  337. }
  338. ```
  339.  
  340. #### [VBScript](https://github.com/SublimeText/VBScript)
  341. VBScript package for Sublime Text
  342.  
  343.  
  344. ## Packages list found on the net
  345.  
  346. Just took these to have a look at what peoples are using...
  347.  
  348. - [Chocolatey ST2.EditorPackages](https://chocolatey.org/packages/EthanBrown.SublimeText2.EditorPackages) and [Chocolatey ST2.UtilPackages](https://chocolatey.org/packages/EthanBrown.SublimeText2.UtilPackages), thanks to [iristyle](https://chocolatey.org/profiles/Iristyle).
  349. - [Chocolatey ST3.Packages](https://chocolatey.org/packages/jivkok.SublimeText3.Packages), thanks to [jivkok](https://chocolatey.org/profiles/jivkok).
  350. - [AutoInstall Sublime Packages](https://gist.github.com/vishaltelangre/5075346), thanks to [vishaltelangre](https://github.com/vishaltelangre).
  351.  
  352. [AAAPackageDev] (https://github.com/SublimeText/AAAPackageDev) --
  353. [AdvancedNewFile] (https://github.com/skuroda/Sublime-AdvancedNewFile) --
  354. [ApacheConf.tmLanguage] (https://github.com/colinta/ApacheConf.tmLanguage) --
  355. [Auto Encoding for Ruby] (https://github.com/elomarns/auto-encoding-for-ruby) --
  356. [AutoFileName] (https://github.com/BoundInCode/AutoFileName) --
  357. [Backbone.js] (https://github.com/tomasztunik/Sublime-Text-2-Backbone.js-package) --
  358. [BeautifyRuby] (https://github.com/CraigWilliams/BeautifyRuby) --
  359. [Bracketeer] (https://github.com/colinta/SublimeBracketeer) --
  360. [BracketHighlighter] (https://github.com/facelessuser/BracketHighlighter) --
  361. [BufferScroll] (https://github.com/SublimeText/BufferScroll) --
  362. [ChangeQuotes] (https://github.com/colinta/SublimeChangeQuotes) --
  363. [Clipboard Manager] (https://github.com/colinta/SublimeClipboardManager) --
  364. [CodeFormatter] (https://github.com/akalongman/sublimetext-codeformatter) --
  365. [CoffeeCompile] (https://github.com/surjikal/sublime-coffee-compile) --
  366. [CoffeeScript] (http://xavura.github.com/CoffeeScript-Sublime-Plugin) --
  367. [CoffeeScript Function Finder] (https://github.com/edubkendo/sublime-coffeescript-function-finder) --
  368. [Color Highlighter] (https://sublime.wbond.net/packages/Color%20Highlighter) --
  369. [ColorPick] (https://github.com/jnordberg/sublime-colorpick) --
  370. [ColorSchemeSelector] (https://github.com/jugyo/SublimeColorSchemeSelector) --
  371. [ConsoleExec] (https://github.com/joeyespo/sublimetext-console-exec) --
  372. [Copy File Name] (https://sublime.wbond.net/packages/copy-file-name) --
  373. [CSS Less(ish)] (https://github.com/kizza/CSS-Less-ish) --
  374. [CSS Media Query Snippets] (https://github.com/davezatch/Media-Query-Snippets) --
  375. [CSS Snippets] (https://github.com/joshnh/CSS-Snippets) --
  376. [CSScomb] (https://github.com/csscomb/sublime-csscomb) --
  377. [CSSFormat] (https://github.com/hdemirchian/CSSFormat) --
  378. [Csslisible] (https://github.com/thierrylemoulec/Sublime-Csslisible) --
  379. [CSSTidy] (https://github.com/fitnr/SublimeCSSTidy) --
  380. [CTags] (https://github.com/SublimeText/CTags) --
  381. [Current Scope] (https://github.com/gumuz/currentscope) --
  382. [Dayle Rees Color Schemes] (http://daylerees.github.io) --
  383. [EasyMotion] (https://github.com/tednaleid/sublime-EasyMotion) --
  384. [ElasticTabstops] (https://github.com/SublimeText/ElasticTabstops) --
  385. [Emmet] (https://github.com/sergeche/emmet-sublime) --
  386. [EncodingHelper] (https://github.com/SublimeText/EncodingHelper) --
  387. [ERB Snippets] (https://github.com/matthewrobertson/ERB-Sublime-Snippets) --
  388. [ExportHtml] (https://github.com/facelessuser/ExportHtml) --
  389. [Extract Sublime Package] (https://github.com/SublimeText/ExtractSublimePackage) --
  390. [FavoriteFiles] (https://github.com/facelessuser/FavoriteFiles) --
  391. [FileDiffs] (https://github.com/colinta/SublimeFileDiffs) --
  392. [FindKeyConflicts] (https://github.com/skuroda/FindKeyConflicts) --
  393. [Gist] (https://github.com/condemil/Gist) --
  394. [Git] (https://github.com/kemayo/sublime-text-git) --
  395. [Git Status Files] (https://github.com/mkraft/git-status-files) --
  396. [GitGutter] (http://www.jisaacks.com/gitgutter) --
  397. [Hacker News] (https://github.com/timdavies/HackerNews-SublimeTextPlugin) --
  398. [Haml] (https://github.com/phuibonhoa/handcrafted-haml-textmate-bundle) --
  399. [HighlightDuplicates] (https://github.com/qur2/HighlightDuplicates) --
  400. [HTML2Haml] (https://github.com/pavelpachkovskij/sublime-html-to-haml) --
  401. [HTML5] (https://github.com/mrmartineau/HTML5) --
  402. [HTMLAttributes] (https://github.com/agibsonsw/HTMLAttributes) --
  403. [HtmlTidy] (https://github.com/welovewordpress/SublimeHtmlTidy) --
  404. [Http Requester] (https://github.com/braindamageinc/SublimeHttpRequester) --
  405. [INI] (https://github.com/clintberry/sublime-text-2-ini) --
  406. [InsertDate] (https://github.com/FichteFoll/sublimetext-insertdate) --
  407. [Javascript Beautify] (https://github.com/enginespot/js-beautify-sublime) --
  408. [JavaScript Snippets] (https://github.com/jprichardson/sublime-js-snippets) --
  409. [jQuery] (https://github.com/SublimeText/jQuery) --
  410. [jQuery Snippets pack] (https://github.com/aaronpowell/sublime-jquery-snippets) --
  411. [JS Snippets] (https://github.com/RadLikeWhoa/JS-Snippets) --
  412. [JS2Coffee] (https://github.com/nibblebot/sublime-js2coffee) --
  413. [JsFormat] (https://github.com/jdc0589/JsFormat) --
  414. [JSHint] (https://github.com/uipoet/sublime-jshint) --
  415. [JsMinifier] (https://github.com/cgutierrez/JsMinifier) --
  416. [Keymap Redefiner] (https://github.com/csch0/SublimeText-Keymap-Redefiner) --
  417. [KeymapManager] (https://github.com/welefen/KeymapManager) --
  418. [LESS] (https://sublime.wbond.net/packages/LESS) --
  419. [Less2Css] (https://github.com/timdouglas/sublime-less2css) --
  420. [Line Completion] (https://github.com/astropanic/Compline) --
  421. [LineEndings] (https://github.com/SublimeText/LineEndings) --
  422. [LiveReload] (https://github.com/dz0ny/LiveReload-sublimetext2) --
  423. [Logs Colorize] (https://github.com/tiger2wander/SublimeText2-Logs) --
  424. [LoremIpsum] (https://github.com/billymoon/LoremIpsum) --
  425. [Markdown Preview] (https://github.com/revolunet/sublimetext-markdown-preview) --
  426. [MarkdownEditing] (https://github.com/SublimeText-Markdown/MarkdownEditing) --
  427. [Meld diff] (https://github.com/mablo/sublime-text-2-meld-diff) --
  428. [Missing Palette Commands] (https://github.com/fjl/Sublime-Missing-Palette-Commands) --
  429. [ModernPerl] (https://github.com/Blaizer/ModernPerl-sublime) --
  430. [Mojolicious] (https://sublime.wbond.net/packages/Mojolicious) --
  431. [MoveTab] (https://github.com/SublimeText/MoveTab) --
  432. [MoveText] (https://github.com/colinta/SublimeMoveText) --
  433. [Navigation History] (https://github.com/timjrobinson/SublimeNavigationHistory) --
  434. [Nodejs] (https://github.com/tanepiper/SublimeText-Nodejs) --
  435. [Open Folder] (https://github.com/mikepfirrmann/openfolder) --
  436. [Open Recent Files] (https://github.com/spadgos/sublime-OpenRecentFiles) --
  437. [Open URL] (https://github.com/noahcoad/open-url) --
  438. [OpenSearchResult] (https://github.com/abrookins/OpenSearchResult) --
  439. [orgmode] (https://github.com/danielmagnussons/orgmode) --
  440. [Package Control] (https://sublime.wbond.net) --
  441. [PerlTidy] (https://github.com/vifo/SublimePerlTidy) --
  442. [Placehold.it Image Tag Generator] (https://github.com/SubZane/Sublime-Placehold.it) --
  443. [PlainTasks] (https://github.com/aziz/PlainTasks) --
  444. [PowerShell] (https://github.com/SublimeText/PowerShell) --
  445. [Prefixr] (http://wbond.net/sublime_packages/prefixr) --
  446. [Pretty JSON] (https://github.com/dzhibas/SublimePrettyJson) --
  447. [Rails Partial] (https://github.com/wesf90/rails-partial) --
  448. [RecentActiveFiles] (https://github.com/jugyo/SublimeRecentActiveFiles) --
  449. [Related Files] (https://github.com/fabiokr/sublime-related-files) --
  450. [Ruby on Rails snippets] (https://github.com/tadast/sublime-rails-snippets) --
  451. [RubyFormat] (https://github.com/zmbacker/RubyFormat) --
  452. [RubyToggleString] (https://github.com/jugyo/SublimeRubyToggleString) --
  453. [Sass] (https://github.com/nathos/sass-textmate-bundle) --
  454. [SCSS] (https://github.com/MarioRicalde/SCSS.tmbundle) --
  455. [SCSS Snippets] (https://github.com/npostulart/SCSS-Snippets) --
  456. [Search Anywhere] (https://github.com/ericmartel/Sublime-Text-2-Search-Anywhere-Plugin) --
  457. [SFTP] (http://wbond.net/sublime_packages/sftp) --
  458. [SideBarEnhancements] (https://github.com/titoBouzout/SideBarEnhancements) --
  459. [Simple Rails Navigator] (https://github.com/noklesta/SublimeRailsNav) --
  460. [SmartMarkdown] (https://github.com/demon386/SmartMarkdown) --
  461. [Solarized Color Scheme] (https://github.com/SublimeColors/Solarized) --
  462. [SortTabs] (https://github.com/bizoo/SortTabs) --
  463. [StringEncode] (https://github.com/colinta/SublimeStringEncode) --
  464. [Sublime Files] (https://github.com/al63/SublimeFiles) --
  465. [SublimeLinter] (https://github.com/SublimeLinter/SublimeLinter3) --
  466. [SublimeTODO] (https://github.com/robcowie/SublimeTODO) --
  467. [SublimeWebColors] (http://james.brooks.so) --
  468. [SublimeXiki] (https://github.com/lunixbochs/SublimeXiki) --
  469. [SyncedSideBar] (https://github.com/sobstel/SyncedSideBar) --
  470. [Theme - Soda] (https://github.com/buymeasoda/soda-theme) --
  471. [Todo] (https://github.com/Nijikokun/todo-tmbundle) --
  472. [TodoReview] (https://github.com/jonathandelgado/SublimeTodoReview) --
  473. [Toggle Symbol to String] (https://github.com/zoomix/SublimeToggleSymbol) --
  474. [TrailingSpaces] (https://github.com/SublimeText/TrailingSpaces) --
  475. [Twig] (https://github.com/purplefish32/sublime-text-2-twig) --
  476. [Unicode Character Highlighter] (https://github.com/possan/sublime_unicode_nbsp) --
  477. [URLEncode] (https://github.com/mastahyeti/URLEncode) --
  478. [VBScript] (https://github.com/SublimeText/VBScript) --
  479. [Vintageous] (http://guillermooo.bitbucket.org/Vintageous) --
  480. [WordCount] (https://github.com/SublimeText/WordCount) --
  481. [WordHighlight] (https://github.com/SublimeText/WordHighlight)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement