Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+X | delete line |
| Ctrl+↩ | insert line after |
| Ctrl+⇧+↩ | insert line before |
| Ctrl+⇧+↑ | move line (or selection) up |
| #!/bin/sh | |
| # Called by "git push" after it has checked the remote status, | |
| # but before anything has been pushed. | |
| # | |
| # If this script exits with a non-zero status nothing will be pushed. | |
| # | |
| # Steps to install, from the root directory of your repo... | |
| # 1. git config --global init.templatedir '~/.git-templates' | |
| # 2. mkdir -p ~/.git-templates/hooks |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+X | delete line |
| Ctrl+↩ | insert line after |
| Ctrl+⇧+↩ | insert line before |
| Ctrl+⇧+↑ | move line (or selection) up |
| module Searchlogic | |
| module NamedScopes | |
| # Handles dynamically creating named scopes for ordering by columns. Example: | |
| # | |
| # User.ascend_by_id | |
| # User.descend_by_username | |
| # | |
| # See the README for a more detailed explanation. | |
| module Ordering | |
| module InstanceOverrideMethods |