All Projects → nicejade → Sublime_packages

nicejade / Sublime_packages

✍️ SublimeText Pageages Backups For Front-End Developer

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Sublime packages

React Rewards
Package containing a few microinteractions you can use to reward your users for little things and make them smile!
Stars: ✭ 841 (+1951.22%)
Mutual labels:  front-end
The Front End Architect Resource List
Front End Architecture resources
Stars: ✭ 21 (-48.78%)
Mutual labels:  front-end
St3 Binaryplist
Automatically converts binary property lists to XML when opened and writes them back out to binary when saved.
Stars: ✭ 35 (-14.63%)
Mutual labels:  sublime-text-3
Angular Typed
the angularjs typing tool module, that helps you with typing animation
Stars: ✭ 11 (-73.17%)
Mutual labels:  front-end
Astral
⊙ CSS franken-work ⊙
Stars: ✭ 14 (-65.85%)
Mutual labels:  front-end
Millenniumjs
🚀 A javascript library for create Functional Stateless Components and render with Virtual DOM.
Stars: ✭ 28 (-31.71%)
Mutual labels:  front-end
Notification
notification with socket.io
Stars: ✭ 24 (-41.46%)
Mutual labels:  front-end
Eks
A series of Vue components.
Stars: ✭ 39 (-4.88%)
Mutual labels:  front-end
Easy Dom
EASYDOM-可能是最适合你的 DOM 课程
Stars: ✭ 21 (-48.78%)
Mutual labels:  front-end
Hayaku
Fuzzy abbreviations, support for preprocessors (Sass, Less, Stylus) and a lot of other features in easily configurable set of tools for writing CSS faster
Stars: ✭ 973 (+2273.17%)
Mutual labels:  sublime-text-3
Egjs
Javascript components group that brings easiest and fastest way to build a web application in your way.
Stars: ✭ 871 (+2024.39%)
Mutual labels:  front-end
Itelios Frontend Challenge
Desafio de admissão para desenvolvedores front-end da Itelios
Stars: ✭ 14 (-65.85%)
Mutual labels:  front-end
Front End Plugins
🐋 Web 前端常用插件
Stars: ✭ 949 (+2214.63%)
Mutual labels:  front-end
Sublime Thinkphp
thinkphp 的 sublime 快速补全插件
Stars: ✭ 9 (-78.05%)
Mutual labels:  sublime-text-3
Medlaunch
A Windows (.NET) Front-End for the Mednafen Emulator
Stars: ✭ 37 (-9.76%)
Mutual labels:  front-end
Feflow
🚀 A command line tool aims to improve front-end engineer workflow and standard, powered by TypeScript.
Stars: ✭ 942 (+2197.56%)
Mutual labels:  front-end
Front End Interview Handbook
⚡️ Front End interview preparation materials for busy engineers
Stars: ✭ 32,265 (+78595.12%)
Mutual labels:  front-end
Spionio
Lightweight focus group management platform that can capture and replay user interaction on your site and improve the UX in everything you build
Stars: ✭ 40 (-2.44%)
Mutual labels:  front-end
Code Faster
Sublime Text plugin for programming contests - loads codeforces problems right into your text editor with a single button.
Stars: ✭ 38 (-7.32%)
Mutual labels:  sublime-text-3
Alumna
[Alpha release of v3] Development platform for humans / Plataforma de desenvolvimento para humanos
Stars: ✭ 32 (-21.95%)
Mutual labels:  front-end

sublime_packages backups For Front-End Developer

Injected plug-in list

  • Package Control
  • SideBarEnhancements
  • Doc​Blockr
  • TrailingSpaces
  • SyncedSideBar
  • Sublime Terminal
  • Emmet
  • HTML-CSS-JS Prettify
  • Bracket Highlighter

For more nice advice, see How to gracefully use Sublime Text.

Preferences.sublime-settings

If you do some of the targeted settings, she(Sublime) will be better to provide you with services, such as this(PS: You can quickly open the settings, through the shortcut keys: Command + , windows: Ctrl + ,):

{
	"folder_exclude_patterns":
	[
		".svn",
		".git",
		".hg",
		"CVS",
		"node_modules"
	],
	"font_size": 18,
	"ignored_packages":
	[
		"Vintage"
	],
	"tab_size": 2,
	"translate_tabs_to_spaces": true,
	"trim_trailing_white_space_on_save": true,
	"draw_minimap_border": true,
	"bold_folder_labels": true,
	"auto_find_in_selection": true,
	"highlight_line": true
}

Preferences.Key Bindings

[
	{ "keys": ["command+\\"], "command": "toggle_side_bar" },
	{ "keys": ["command+shift+x"], "command": "toggle_comment", "args": { "block": true } },
	{ "keys": ["command+alt+p"], "command": "prompt_select_workspace" },
	{ "keys": ["command+shift+d"], "command": "delete_trailing_spaces"}
]

Command Description

  • toggle_side_bar: Quick Quick side bar.
  • toggle_comment: Quick Quick comment.
  • prompt_select_workspace: Restore Quick Switch Project shortcut.
  • delete_trailing_spaces: Delete trailing spaces.
  • paste_from_history: You can create key bindings composed of multiple keys.

Additional instructions

You can create key bindings composed of multiple keys. Like this:

{ "keys": ["ctrl+k", "ctrl+v"], "command": "paste_from_history" }

When you use this combination configuration, you have to press Ctrl + K first, then release K(or not), and finally press V.

Of course, if you are using Windows, you should replace the command with ctrl, For more nice advice, see How to gracefully use Sublime Text.

Develop React Using Sublime

Setting as the default syntax

  • Find Babel & install it through Package Control.
  • Select View from the menu,
  • Then Syntax -> Open all with current extension as... -> Babel -> JavaScript (Babel).

!‼️: You should not skip this option —— Open all with current extension as..., good luck.

Setting a Color Scheme

Babel comes bundled with Next and Monokai from Benvie/JavaScriptNext.tmLanguage. Select one from Preferences -> Color Scheme -> Babel

For more information, See babel-sublime](https://github.com/babel/babel-sublime) please.

Emmet compatible jsx

Open preferences -> Key bindings - Users,Copy the code below to [] inside:

{
  "keys": ["tab"], 
  "command": "expand_abbreviation_by_tab", 

  // put comma-separated syntax selectors for which 
  // you want to expandEmmet abbreviations into "operand" key 
  // instead of SCOPE_SELECTOR.
  // Examples: source.js, text.html - source
  "context": [
    {
      "operand": "source.js", 
      "operator": "equal", 
      "match_all": true, 
      "key": "selector"
    }, 

    // run only if there's no selected text
    {
      "match_all": true, 
      "key": "selection_empty"
    },

    // don't work if there are active tabstops
    {
      "operator": "equal", 
      "operand": false, 
      "match_all": true, 
      "key": "has_next_field"
    }, 

    // don't work if completion popup is visible and you
    // want to insert completion with Tab. If you want to
    // expand Emmet with Tab even if popup is visible -- 
    // remove this section
    {
      "operand": false, 
      "operator": "equal", 
      "match_all": true, 
      "key": "auto_complete_visible"
    }, 
    {
      "match_all": true, 
      "key": "is_abbreviation"
    }
  ]
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].