iberck
10/31/2015 - 3:40 AM

sublime text 3 setup

sublime text 3 setup

Sublime Text 3 Setup

Quitar diálogo de actualización

Just go to Preferences -> Settings-User and add there: "update_check": false,

Temas

Directorio PACKAGES: Preferences->Browse Packages

Soda theme
Para instalar los colour themes de soda es en la ruta: $PACKAGES\User

FlatLand

Ctrl + up/down

Este comando es muy útil y deja de funcionar luego de instalar emmet, para volver a poder utilizar el comando ir a: Preferences->package settings->emmmet->settings user y agrega lo siguiente:

{
  "disabled_keymap_actions": "increment_number_by_1, decrement_number_by_1"
}

Goto definition

Para ir a la definición de un método:
Sublime Text -> Preferences -> Key Bindings - User
{ "keys": ["alt+shift+m"], "command": "goto_definition" }

Keyboard comments

Por defecto no funciona comentar lineas con ctrl+/, para solucionarlo agregar la siguiente línea en keybindings:
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": false } },

Cambiar el color del minimap

https://github.com/kujiy/how-to-change-sublime-minimap-color

Save all

Agregar a Preferences->Key bindings User->
{ "keys": ["ctrl+shift+s"], "command": "save_all" },

Delete line

Agregar a Preferences->Key bindings User->
{ "keys": ["shift+delete"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },