From 528b6d3e93ad5963949c5a63f1d90868fa813ab7 Mon Sep 17 00:00:00 2001 From: Julien Le Coupanec Date: Wed, 7 Feb 2018 00:21:06 +0000 Subject: [PATCH 1/4] Update README.md with companies who contributed --- README.md | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7c50647..816ae95 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? @@ -62,3 +62,27 @@ Feel free to browse each file to learn new things and to keep them at hand when - [Nanobox CLI](tools/nanobox_cli.sh) - [VIM](tools/vim.txt) + + +## Companies who contributed + + + + + + + + + + + + + + +
+ +
Anyleads
+ +
Crisp
+ +> 👋 Do you want your company to be listed there? Contribute with a cheatsheet for your favorite programming language, framework or development tool. From ad661bbb3d0540933fdf7fad24ec89ac8334f7a6 Mon Sep 17 00:00:00 2001 From: Julien Le Coupanec Date: Wed, 7 Feb 2018 00:24:20 +0000 Subject: [PATCH 2/4] Update README.md --- README.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/README.md b/README.md index 816ae95..781291a 100644 --- a/README.md +++ b/README.md @@ -71,18 +71,10 @@ Feel free to browse each file to learn new things and to keep them at hand when - - - Anyleads - - - - Crisp - > 👋 Do you want your company to be listed there? Contribute with a cheatsheet for your favorite programming language, framework or development tool. From 5791c29ab62b768e284b302bc0593cbde208812d Mon Sep 17 00:00:00 2001 From: Julien Le Coupanec Date: Wed, 7 Feb 2018 00:29:34 +0000 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 781291a..9a27f2f 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ Feel free to browse each file to learn new things and to keep them at hand when - [VIM](tools/vim.txt) -## Companies who contributed +## Contribution From ef808c91de965a3d8f1eea44caba40befabb1f7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Farr=C3=A9s?= Date: Wed, 7 Feb 2018 18:01:27 +0100 Subject: [PATCH 4/4] Use C instead of c$ to change to end of the line --- tools/vim.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)