├── README.md ├── cheat_ball.pdf ├── src ├── .gitignore ├── Makefile ├── cheat_ball.svg └── img │ ├── cc.png │ ├── dodecaeder.pdf │ ├── scissors.png │ ├── scissors.svg │ ├── thumbnail.jpg │ └── vim-editor_logo.png └── thumbnail.jpg /README.md: -------------------------------------------------------------------------------- 1 | # VIM Cheat Ball 2 | 3 | ![Vim cheat ball](./thumbnail.jpg) 4 | 5 | 6 | Use the [`cheat_ball.pdf` file](./cheat_ball.pdf) 7 | 8 | 9 | ## License 10 | 11 | This resource is licensed under the Creative Commons Attribution-ShareAlike 4.0 12 | International license. 13 | 14 | By: Daniel Campoverde [Alx741] 15 | 16 | mailto: alx@sillybytes.net 17 | 18 | https://sillybytes.net 19 | -------------------------------------------------------------------------------- /cheat_ball.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alx741/vim_cheat_ball/ce7d54709b27130ede7d0dc125d440b1caf38555/cheat_ball.pdf -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- 1 | # This Makefile was generated by the made script: 2 | # https://github.com/alx741/made 3 | # 4 | # Replace OUTPUTS with your output PDFs 5 | # 6 | # Dependencies: 7 | # Inkscape 8 | 9 | 10 | INPUTS = $(shell find . -type f -name '*.svg') 11 | OUTPUTS = $(foreach input, $(INPUTS), $(input:.svg=.pdf)) 12 | 13 | all: $(OUTPUTS) 14 | 15 | %.pdf: %.svg 16 | inkscape -C $< -o $@ 17 | 18 | clean: 19 | rm $(OUTPUTS) 20 | -------------------------------------------------------------------------------- /src/img/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alx741/vim_cheat_ball/ce7d54709b27130ede7d0dc125d440b1caf38555/src/img/cc.png -------------------------------------------------------------------------------- /src/img/dodecaeder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alx741/vim_cheat_ball/ce7d54709b27130ede7d0dc125d440b1caf38555/src/img/dodecaeder.pdf -------------------------------------------------------------------------------- /src/img/scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alx741/vim_cheat_ball/ce7d54709b27130ede7d0dc125d440b1caf38555/src/img/scissors.png -------------------------------------------------------------------------------- /src/img/scissors.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | Scissors 9 | Generic scissor outline 10 | 11 | 12 | hash 13 | 14 | education 15 | 16 | 17 | 18 | 19 | Jon Phillips 20 | 21 | 22 | 23 | 24 | Jon Phillips 25 | 26 | 27 | 28 | 29 | Jon Phillips 30 | 31 | 32 | 33 | image/svg+xml 34 | 35 | 36 | en 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/img/thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alx741/vim_cheat_ball/ce7d54709b27130ede7d0dc125d440b1caf38555/src/img/thumbnail.jpg -------------------------------------------------------------------------------- /src/img/vim-editor_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alx741/vim_cheat_ball/ce7d54709b27130ede7d0dc125d440b1caf38555/src/img/vim-editor_logo.png -------------------------------------------------------------------------------- /thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alx741/vim_cheat_ball/ce7d54709b27130ede7d0dc125d440b1caf38555/thumbnail.jpg --------------------------------------------------------------------------------