(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:
| ### begin Redshift code ### | |
| // get rid of the old stuff | |
| drop table crashyplane; | |
| // create a new table | |
| create table crashyplane ( | |
| event varchar(255) not null, | |
| "time" int, | |
| distinct_id varchar(255) distkey sortkey not null, |
| #!/usr/bin/env node | |
| //# vi: ft=javascript | |
| "use strict"; | |
| var util = require('util'); | |
| var recluster = require('recluster'); | |
| var path = require('path'); | |
| var fs = require('fs'); | |
| var args = require('optimist').argv; |
| app.get('/', function(req, res) { | |
| // [clipped] set user | |
| res.render('index', {user: user}); | |
| }); |