├── .gitignore ├── LICENSE ├── README.md ├── crunch_freqs.py ├── example-freqs ├── markov-all.el ├── markovkeyboard.el ├── screenshot.png └── smoothing.el /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapr/markovkeyboard/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapr/markovkeyboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapr/markovkeyboard/HEAD/README.md -------------------------------------------------------------------------------- /crunch_freqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapr/markovkeyboard/HEAD/crunch_freqs.py -------------------------------------------------------------------------------- /example-freqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapr/markovkeyboard/HEAD/example-freqs -------------------------------------------------------------------------------- /markov-all.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapr/markovkeyboard/HEAD/markov-all.el -------------------------------------------------------------------------------- /markovkeyboard.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapr/markovkeyboard/HEAD/markovkeyboard.el -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapr/markovkeyboard/HEAD/screenshot.png -------------------------------------------------------------------------------- /smoothing.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shapr/markovkeyboard/HEAD/smoothing.el --------------------------------------------------------------------------------