Default prefix is crtl+b
As configured in my dotfiles.
start new:
tmux
start new with session name:
| CTRL+a | |
| Move cursor to beginning of the line. (I think of this as anchoring my cursor to the start.) | |
| CTRL+e | |
| Move cursor to the end of the line. | |
| CTRL+k | |
| Delete everything from under the cursor to the end of the line. (I think of this as killing the rest of my line.) | |
| CTRL+f |
Default prefix is crtl+b
As configured in my dotfiles.
start new:
tmux
start new with session name:
| [user] | |
| name = Mikko Lehtinen | |
| email = [email protected] | |
| [alias] | |
| st = status | |
| stb = status -sb | |
| co = checkout | |
| promote = !$ZSH/bin/git-promote | |
| wtf = !$ZSH/bin/git-wtf |
| # build output dirs | |
| BUILD_DIR = build | |
| JS_BUILD_DIR = $(BUILD_DIR)/js | |
| CSS_BUILD_DIR = $(BUILD_DIR)/css | |
| IMG_BUILD_DIR = $(BUILD_DIR)/img | |
| VENDOR_BUILD_DIR = $(BUILD_DIR)/vendor | |
| TESTS_BUILD_DIR = test/build | |
| # sources | |
| TEMPLATES = $(shell find app -name '*.hbs') |
| define [ | |
| 'underscore' | |
| 'chaplin/views/view' | |
| 'app/views/base_extensions' | |
| ], (_, ChaplinView, BaseExtensions) -> | |
| class BaseView extends ChaplinView | |
| _(@prototype).extend BaseExtensions |
| define [ | |
| 'chaplin' | |
| 'Handlebars' | |
| ], (Chaplin, Handlebars) -> | |
| 'use strict' | |
| BaseExtensions = | |
| trackAction: (category, action, label, value) -> | |
| # track user action with Google Analytics |
| /** | |
| * Vertical centering with Flexbox + margin fallback | |
| * Lea Verou & David Storey | |
| */ | |
| html, body { height: 100%; } | |
| body { | |
| width: 100%; /* needed for FF */ | |
| margin: 0; |
| /** | |
| * Vertical centering with Flexbox + margin fallback | |
| * Lea Verou & David Storey | |
| */ | |
| html, body { height: 100%; } | |
| body { | |
| width: 100%; /* needed for FF */ | |
| margin: 0; |
| import urllib | |
| from google.appengine.api import urlfetch | |
| from gdata import oauth | |
| class MollomRequest(object): | |
| API_URL = 'http://rest.mollom.com/v1/' | |
| # mollom public API key | |
| CONSUMER_KEY = 'xxx' |