(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| // Existing commands that used to be 'pane:split-*' | |
| 'pane:split-left-and-copy-active-item' | |
| 'pane:split-right-and-copy-active-item' | |
| 'pane:split-up-and-copy-active-item' | |
| 'pane:split-down-and-copy-active-item' | |
| // New commands to create splits | |
| 'pane:split-left' | |
| 'pane:split-right' | |
| 'pane:split-up' |
| 'use strict' | |
| var gulp, sass, babelify, browserify, watchify, source, util; | |
| gulp = require('gulp'); | |
| sass = require('gulp-sass'); | |
| babelify = require('babelify') | |
| browserify = require('browserify'); | |
| watchify = require('watchify'); | |
| source = require('vinyl-source-stream'); |
| #!/usr/bin/env ruby | |
| # Usage | |
| # $ docker-machine create my-machine123 -d virtualbox | |
| # $ ruby <(curl -L https://git.io/vvvco) my-machine123 | |
| # https://gist.github.com/mattes/4d7f435d759ca2581347 | |
| require 'erb' | |
| bootlocalsh = %Q(#/bin/bash |
| #!/bin/bash | |
| sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport | |
| sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport |
| # Reconfigures ActionDispatch's TLD handling dynamically based on the request | |
| # host, so you don't have to mess with config.action_dispatch.tld_length for | |
| # cross-device testing using xip.io and friends | |
| # | |
| # Examples: | |
| # use Rack::HostBasedTldLength, /xip\.io/, 5 | |
| class Rack::HostBasedTldLength | |
| def initialize(app, host_pattern, host_tld_length) | |
| @app = app |
| This playbook has been removed as it is now very outdated. |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)