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 |
| [phases.setup] | |
| nixPkgs = ["...", "python311Packages.supervisor", "php82Extensions.redis"] | |
| [phases.build] | |
| cmds = [ | |
| "mkdir -p /var/log", | |
| "touch /var/log/nginx-access.log /var/log/nginx-error.log", | |
| "chown -R www-data:www-data /var/log", | |
| "chown -R www-data:www-data /app", | |
| "chmod -R 755 /app", |
| require "formula" | |
| class Mongodb < Formula | |
| homepage "http://www.mongodb.org/" | |
| url "http://downloads.mongodb.org/src/mongodb-src-r2.6.5.tar.gz" | |
| sha1 "f5a68505a0de1152b534d62a8f0147d258d503a0" | |
| bottle do | |
| sha1 "d573717ca7c67455680a6823de210c940faf9ac6" => :mavericks | |
| sha1 "f7d2a0711e3ac09fd61bcb243360c1a07fb83233" => :mountain_lion |
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 |