- Sublime Text 3 – Useful Shortcuts (Mac OS X)
- General
Shortcut | Description
-——- | -————
⌘⌃P | go to project
⌘R | go to methods
⌃G | go to line
⌘KB | toggle side bar
Shortcut | Description
-——- | -————
⌘⌃P | go to project
⌘R | go to methods
⌃G | go to line
⌘KB | toggle side bar
<p><span>←</span></p> |
data:text/html, <style type="text/css">#e{position:absolute;top:0;right:0;bottom:0;left:0;}</style><div id="e"></div><script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script><script>var e=ace.edit("e");e.setTheme("ace/theme/monokai");e.getSession().setMode("ace/mode/javascript");</script> |
Version 0.4.1
A tiny modular architecture framework in JavaScript.
Inspiration : "Scalable JavaScript Application Architecture", by Nicholas C. Zakas.
<button class="in_progress">get videos</button > |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# @gf3’s Sexy Bash Prompt, inspired by “Extravagant Zsh Prompt” | |
# Shamelessly copied from https://github.com/gf3/dotfiles | |
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then | |
export TERM=gnome-256color | |
elif infocmp xterm-256color >/dev/null 2>&1; then | |
export TERM=xterm-256color | |
fi | |
if tput setaf 1 &> /dev/null; then |
var Person = function(x){ | |
if(x){this.fullName = x}; | |
}; | |
Person.prototype.whatIsMyFullName = function() { | |
return this.fullName; | |
} | |
var cody = new Person('cody lindley'); | |
var lisa = new Person('lisa lindley'); | |
console.log(cody.whatIsMyFullName(), lisa.whatIsMyFullName()); |