Skip to content

Instantly share code, notes, and snippets.

View ernestochapon's full-sized avatar
😎
Actualizanding ebrising

Ernesto L. Chapon ernestochapon

😎
Actualizanding ebrising
View GitHub Profile
@ernestochapon
ernestochapon / mkalias.sh
Last active August 29, 2015 14:04 — forked from xr09/gist:912044868b954685de2b
Una manera sencilla para crear alias de comandos en Linux
# mkalias name "command param1 param2 etc.."
# Example: mkalias srvfolder "python -m SimpleHTTPServer"
mkalias () {
echo "alias $1=\"$2\"" >> ~/.bashrc
}
@ernestochapon
ernestochapon / sublime_shortcuts
Last active August 29, 2015 14:01
Sublime Text 2 - Useful Shorcuts (PC)
h1. Sublime Text 2 - Useful Shortcuts (PC)
Loosely ordered with the commands I use most towards the top. Sublime also offer "full documentation":http://www.sublimetext.com/docs/2/.
h2. Editing
| *Ctrl+C* | copy current line (if no selection) |
| *Ctrl+X* | cut current line (if no selection) |
| *Ctrl+⇧+K*| delete line |
| *Ctrl+↩* | insert line after |