(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:
(by @andrestaltz)
So you're curious in learning this new thing called (Functional) Reactive Programming (FRP).
Learning it is hard, even harder by the lack of good material. When I started, I tried looking for tutorials. I found only a handful of practical guides, but they just scratched the surface and never tackled the challenge of building the whole architecture around it. Library documentations often don't help when you're trying to understand some function. I mean, honestly, look at this:
Rx.Observable.prototype.flatMapLatest(selector, [thisArg])
Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.
| # Snake for Neovim! Adapted from https://gist.github.com/sanchitgangwar/2158084 | |
| # To install, create a ~/.vim/external-plugin/python/snake.py file with this | |
| # code, then run `nvim -c 'UpdateExternalPlugins' -c 'q'` from a shell. | |
| # | |
| # Make sure you have read the internal help explaining how to setup python | |
| # host for external plugins(:help nvim-python) | |
| # | |
| # To start a new game, use the `:SnakeStart` command on an empty buffer(uses 80 | |
| # columns and 20 rows) | |
| from threading import Thread, Lock |
| // Rust 0.10-pre (Tue Mar 18, 2014) | |
| // $ rustc -L rust-openssl/build/ -L rust-toml/lib doing.rs | |
| // assuming https://github.com/sfackler/rust-openssl is cloned and compiled, | |
| // and https://github.com/mneumann/rust-tom is cloned and compiled | |
| #[feature(macro_rules)]; | |
| #[allow(deprecated_owned_vector)]; | |
| extern crate openssl; | |
| extern crate serialize; |