diff --git a/README.md b/README.md index 8c995c6..4856d22 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -![AWESOME CHEATSHEETS LOgO](_images/awesome_cheatsheets_logo@2x.png) +![AWESOME CHEATSHEETS LOGO](_images/awesome_cheatsheets_logo@2x.png) > 📚 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file. -> ❤️ **If you love this repository, [you can click here to make it spread](https://ctt.ec/PHba4).** +> ❤️ **If you like this repository, [you can click here to make it spread](https://ctt.ec/PHba4).** ## Why Awesome Cheatsheets? @@ -71,3 +71,19 @@ Feel free to browse each file to learn new things and to keep them at hand when * [VIM](tools/vim.txt) + + +## Contribution + + + + + + +
+ + + +
+ +> 👋 Do you want your company to be listed there? Contribute with a cheatsheet for your favorite programming language, framework or development tool. diff --git a/tools/vim.txt b/tools/vim.txt index cac6e7c..41e5a7d 100644 --- a/tools/vim.txt +++ b/tools/vim.txt @@ -86,7 +86,7 @@ R enter Insert mode, replacing characters rather than insertin J join line below to the current one cc change (replace) an entire line cw change (replace) to the end of word -c$ change (replace) to the end of line +C change (replace) to the end of line s delete character at cursor and substitute text S delete line at cursor and substitute text (same as cc) xp transpose two letters (delete and paste, technically)