Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| 1. vagrant up | |
| 2. knife solo bootstrap -p 2222 vagrant@localhost | |
| 3. ssh -p 2222 deploy@localhost | |
| 4. cap deploy:setup BRANCH=branch_name HOST=localhost:2222 | |
| 5. knife solo cook deploy@localhost -p 2222 |
| require 'formula' | |
| class Pdftk < Formula | |
| url 'http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/pdftk-1.44-src.zip' | |
| homepage 'http://www.pdflabs.com/' | |
| md5 '9eb50fffcd621a627d387750c60982b4' | |
| depends_on 'gcc' # with "--enable-java" option , required "Homebrew-alt" . | |
| # via : https://github.com/adamv/homebrew-alt/ | |
| def install |
| Highcharts.Chart.prototype.callbacks.push(function(chart) { | |
| var hasTouch = document.documentElement.ontouchstart !== undefined, | |
| mouseTracker = chart.pointer, | |
| container = chart.container, | |
| mouseMove; | |
| mouseMove = function (e) { | |
| // let the system handle multitouch operations like two finger scroll | |
| // and pinching |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |