« Sublime text » : différence entre les versions
| (5 versions intermédiaires par le même utilisateur non affichées) | |||
| Ligne 34 : | Ligne 34 : | ||
Dans le fichiers .scss executer le build avec<br> | Dans le fichiers .scss executer le build avec<br> | ||
tools -> build system -> le fichier nouvellement créé | tools -> build system -> le fichier nouvellement créé | ||
[[category:Dev]] | |||
[[category:Softz]] | |||
== Commandes == | == Commandes == | ||
| Ligne 131 : | Ligne 134 : | ||
</pre> | </pre> | ||
[[category:softz]] | == Custom Perso == | ||
build 4200 | |||
=== Settings === | |||
Package Control.sublime-settings | |||
<syntaxhighlight lang="json" line> | |||
{ | |||
"bootstrapped": true, | |||
"in_process_packages": | |||
[ | |||
], | |||
"installed_packages": | |||
[ | |||
"Alignment", | |||
"ApacheConf", | |||
"ColorPicker", | |||
"GitHub Theme", | |||
"Json Colors And Navigation", | |||
"JSON Reindent", | |||
"Package Control", | |||
"Pretty JSON", | |||
"Sass", | |||
"SqlBeautifier", | |||
"SublimeLinter-php", | |||
"Terminal", | |||
"Twig", | |||
], | |||
} | |||
</syntaxhighlight> | |||
Preferences.sublime-settings | |||
<syntaxhighlight lang="json" line> | |||
{ | |||
"ignored_packages": | |||
[ | |||
"Vintage", | |||
], | |||
"theme": "GitHub Dark.sublime-theme", | |||
"color_scheme": "Monokai.sublime-color-scheme", | |||
"index_files": true, | |||
"font_size": 14, | |||
} | |||
</syntaxhighlight> | |||
=== Key Bindings === | |||
<syntaxhighlight lang="json" line> | |||
[ | |||
{ "keys": ["ctrl+shift+j"], "command": "pretty_json" }, | |||
{ "keys": ["ctrl+m"], "command": "sql_beautifier" }, | |||
{ "keys": ["super+t"], "command": "transpose" }, | |||
{ "keys": ["super+shift+t"], "command": "reopen_last_file", "args": {"source": "window"} }, | |||
{ "keys": ["ctrl+t"], "command": "open_terminal"}, | |||
{ "keys": ["ctrl+shift+t"], "command": "open_terminal_project_folder" }, | |||
{ "keys": ["ctrl+0"], "command": "reset_font_size" } | |||
] | |||
</syntaxhighlight> | |||
[[category:softz]] [[category:Dev]] | |||