(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:
| #!/bin/bash | |
| # Script for installing tmux on systems where you don't have root access. | |
| # tmux will be installed in $HOME/local/bin. | |
| # It's assumed that wget and a C/C++ compiler are installed. | |
| # exit on error | |
| set -e | |
| TMUX_VERSION=1.8 |
| # Let's not localize programming languages. Please >_< | |
| # | |
| # Feel free to fork and expand and/or add more languages as an example | |
| # to why this would be horrible. | |
| # Ruby in English | |
| if user.is_alive? | |
| # send spam mail |
| #!/bin/bash | |
| # Applies the Monokai color scheme to the current terminal session. | |
| declare -A map0 | |
| map0=( [foreground ]='#F8F8F2' [background ]='#272822' | |
| [cursor ]='#F8F8F0' [selection ]='#49483E' | |
| [pink ]='#F92672' [green ]='#A6E22E' | |
| [yellow ]='#E6DB74' [blue ]='#66D9EF' | |
| [purple ]='#AE81FF' [orange ]='#FD971F' | |
| [gray ]='#75715E' ) |
| ;;; multi-select.el --- Provides multiple noncontiguous selections. | |
| ;; This file is NOT part of Emacs. | |
| ;; Copyright (C) 2005, Steve Yegge <steve.yegge at gmail dot com> | |
| ;; Parts Copyright (C) Lawrence Mitchell <[email protected]> | |
| ;; Filename: multi-select.el | |
| ;; Version: 0.9 (pending XEmacs support for version 1.0) | |
| ;; Author: Steve Yegge <stevey at gmail dot com> | |
| ;; Created: April 10th 2005 |
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 |