(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:
| // Just before switching jobs: | |
| // Add one of these. | |
| // Preferably into the same commit where you do a large merge. | |
| // | |
| // This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
| // and then it quickly escalated into more and more evil suggestions. | |
| // I've tried to capture interesting suggestions here. | |
| // | |
| // Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
| // @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |
| pandoc -f markdown -t mediawiki test.md -o test.wiki | |
| # Thanks to @tillmanj for the updated formatting |
| source :rubygems | |
| gem 'sinatra' | |
| gem 'sinatra-assetpack' | |
| gem 'json' | |
| gem 'therubyracer' | |
| gem 'less' |
| #include "dynamicarray.h" | |
| using namespace std; | |
| DynamicArray::DynamicArray() { | |
| DynamicArray::DynamicArray(5); | |
| } | |
| DynamicArray::DynamicArray(int initSize) { | |
| size = initSize; |