├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── cheat-screenshot.png ├── cheat ├── __init__.py ├── cheat.py ├── cheat.py2 ├── printer.py └── utils.py ├── cheatsheets ├── bash.ini ├── docker.ini ├── emacs.ini ├── example.ini ├── firefox.ini ├── git.ini ├── i3.ini ├── markdown.ini ├── nc.ini ├── pdb.ini ├── systemd.ini ├── tmux-conf.ini ├── tmux.ini ├── vagrant.ini └── vim.ini ├── docs └── Printers.md ├── pylintrc └── tests ├── __init__.py ├── test_main.py ├── test_print.py ├── test_utils.py └── testsheets └── test.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/README.md -------------------------------------------------------------------------------- /cheat-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheat-screenshot.png -------------------------------------------------------------------------------- /cheat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cheat/cheat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheat/cheat.py -------------------------------------------------------------------------------- /cheat/cheat.py2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheat/cheat.py2 -------------------------------------------------------------------------------- /cheat/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheat/printer.py -------------------------------------------------------------------------------- /cheat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheat/utils.py -------------------------------------------------------------------------------- /cheatsheets/bash.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/bash.ini -------------------------------------------------------------------------------- /cheatsheets/docker.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/docker.ini -------------------------------------------------------------------------------- /cheatsheets/emacs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/emacs.ini -------------------------------------------------------------------------------- /cheatsheets/example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/example.ini -------------------------------------------------------------------------------- /cheatsheets/firefox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/firefox.ini -------------------------------------------------------------------------------- /cheatsheets/git.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/git.ini -------------------------------------------------------------------------------- /cheatsheets/i3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/i3.ini -------------------------------------------------------------------------------- /cheatsheets/markdown.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/markdown.ini -------------------------------------------------------------------------------- /cheatsheets/nc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/nc.ini -------------------------------------------------------------------------------- /cheatsheets/pdb.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/pdb.ini -------------------------------------------------------------------------------- /cheatsheets/systemd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/systemd.ini -------------------------------------------------------------------------------- /cheatsheets/tmux-conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/tmux-conf.ini -------------------------------------------------------------------------------- /cheatsheets/tmux.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/tmux.ini -------------------------------------------------------------------------------- /cheatsheets/vagrant.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/vagrant.ini -------------------------------------------------------------------------------- /cheatsheets/vim.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/cheatsheets/vim.ini -------------------------------------------------------------------------------- /docs/Printers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/docs/Printers.md -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/pylintrc -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/tests/test_print.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/testsheets/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martialblog/cheatsheet/HEAD/tests/testsheets/test.ini --------------------------------------------------------------------------------