diff --git a/README.md b/README.md index 65b5f402..7639ca29 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,9 @@ Magnificent app which corrects your previous console command, inspired by a [@liamosaur](https://twitter.com/liamosaur/) [tweet](https://twitter.com/liamosaur/status/506975850596536320). -Few examples: +![gif with examples](https://raw.githubusercontent.com/nvbn/thefuck/master/example.gif) + +Few more examples: ```bash ➜ apt-get install vim @@ -159,6 +161,7 @@ using the matched rule and runs it. Rules enabled by default are as follows: * `dry` – fix repetitions like "git git push"; * `fix_alt_space` – replaces Alt+Space with Space character; * `git_add` – fix *"Did you forget to 'git add'?"*; +* `git_branch_delete` – changes `git branch -d` to `git branch -D`; * `git_branch_list` – catches `git branch list` in place of `git branch` and removes created branch; * `git_checkout` – creates the branch before checking-out; * `git_diff_staged` – adds `--staged` to previous `git diff` with unexpected output; @@ -250,7 +253,7 @@ priority = 1000 # Lower first The Fuck has a few settings parameters which can be changed in `~/.thefuck/settings.py`: * `rules` – list of enabled rules, by default `thefuck.conf.DEFAULT_RULES`; -* `require_confirmation` – requires confirmation before running new command, by default `False`; +* `require_confirmation` – requires confirmation before running new command, by default `True`; * `wait_command` – max amount of time in seconds for getting previous command output; * `no_colors` – disable colored output; * `priority` – dict with rules priorities, rule with lower `priority` will be matched first; diff --git a/example.gif b/example.gif new file mode 100644 index 00000000..e6663fcb Binary files /dev/null and b/example.gif differ