start new:
tmux
start new with session name:
tmux new -s myname
| --- Actions --- | |
| $Copy <M-C> | |
| $Cut <M-X> <S-Del> | |
| $Delete <Del> <BS> <M-BS> | |
| $LRU | |
| $Paste <M-V> | |
| $Redo <M-S-Z> <A-S-BS> | |
| $SearchWeb <A-S-G> | |
| $SelectAll <M-A> | |
| $Undo <M-Z> |
| SHELL := /bin/bash | |
| REV := $(shell git rev-parse HEAD) | |
| CHANGES := $(shell test -n "$$(git status --porcelain)" && echo '+CHANGES' || true) | |
| TARGET := packer-provisioner-itamae-local | |
| VERSION := $(shell cat VERSION) | |
| OS := darwin freebsd linux openbsd | |
| ARCH := 386 amd64 |
| ;; Caveat: I'm an Elisp noob. I expect this will break if invoked before flycheck mode is possible, and am not sure that's possible. | |
| ;; Invoke flycheck preferentially when flycheck-mode is enabled. | |
| ;; My own workaround for https://github.com/commercialhaskell/intero/issues/268. | |
| (defun flycheck-or-norm-next-error (&optional n reset) | |
| (interactive "P") | |
| (if flycheck-mode | |
| (flycheck-next-error n reset) | |
| (next-error n reset))) |
This is not an exhaustive list of all interfaces in Go's standard library.
I only list those I think are important.
Interfaces defined in frequently used packages (like io, fmt) are included.
Interfaces that have significant importance are also included.
All of the following information is based on go version go1.8.3 darwin/amd64.
In this video we come across about 50 online resources for category theory:
I quickly comment on about 20 major ones. I link to the university sites, arXiv sites or Amazon page - most of the mentioned books are online available.
Criteria for my book/text selection here are:
| # ... your other config | |
| bind-key -n M-3 run-shell 'toggle-tmux-popup' | |
| # you can switch `M-3` to any keybindings you like. |