mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-31 02:01:13 +00:00
#1174: Fix anchor references
This commit is contained in:
parent
7af9f41d93
commit
b9dd54c768
38
README.md
38
README.md
@ -93,16 +93,16 @@ Reading package lists... Done
|
|||||||
|
|
||||||
## Contents
|
## Contents
|
||||||
|
|
||||||
1. [Requirements](https://github.com/bhav09/thefuck#requirements)
|
1. [Requirements](#requirements)
|
||||||
2. [Installations](https://github.com/bhav09/thefuck#installation)
|
2. [Installations](#installation)
|
||||||
3. [Updating](https://github.com/bhav09/thefuck#updating)
|
3. [Updating](#updating)
|
||||||
4. [How it works](https://github.com/bhav09/thefuck#how-it-works)
|
4. [How it works](#how-it-works)
|
||||||
5. [Creating your own rules](https://github.com/bhav09/thefuck#creating-your-own-rules)
|
5. [Creating your own rules](#creating-your-own-rules)
|
||||||
6. [Settings](https://github.com/bhav09/thefuck#settings)
|
6. [Settings](#settings)
|
||||||
7. [Third party packages with rules](https://github.com/bhav09/thefuck#third-party-packages-with-rules)
|
7. [Third party packages with rules](#third-party-packages-with-rules)
|
||||||
8. [Experimental instant mode](https://github.com/bhav09/thefuck#experimental-instant-mode)
|
8. [Experimental instant mode](#experimental-instant-mode)
|
||||||
9. [Developing](https://github.com/bhav09/thefuck#developing)
|
9. [Developing](#developing)
|
||||||
10. [License](https://github.com/bhav09/thefuck#license-mit)
|
10. [License](#license-mit)
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
@ -110,7 +110,7 @@ Reading package lists... Done
|
|||||||
- pip
|
- pip
|
||||||
- python-dev
|
- python-dev
|
||||||
|
|
||||||
##### [Back to Contents](https://github.com/bhav09/thefuck#contents)
|
##### [Back to Contents](#contents)
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@ -172,7 +172,7 @@ To fix commands recursively until succeeding, use the `-r` option:
|
|||||||
fuck -r
|
fuck -r
|
||||||
```
|
```
|
||||||
|
|
||||||
##### [Back to Contents](https://github.com/bhav09/thefuck#contents)
|
##### [Back to Contents](#contents)
|
||||||
|
|
||||||
## Updating
|
## Updating
|
||||||
|
|
||||||
@ -330,7 +330,7 @@ following rules are enabled by default:
|
|||||||
* `yarn_command_replaced` – fixes replaced `yarn` commands;
|
* `yarn_command_replaced` – fixes replaced `yarn` commands;
|
||||||
* `yarn_help` – makes it easier to open `yarn` documentation;
|
* `yarn_help` – makes it easier to open `yarn` documentation;
|
||||||
|
|
||||||
##### [Back to Contents](https://github.com/bhav09/thefuck#contents)
|
##### [Back to Contents](#contents)
|
||||||
|
|
||||||
The following rules are enabled by default on specific platforms only:
|
The following rules are enabled by default on specific platforms only:
|
||||||
|
|
||||||
@ -359,7 +359,7 @@ default:
|
|||||||
* `git_push_force` – adds `--force-with-lease` to a `git push` (may conflict with `git_push_pull`);
|
* `git_push_force` – adds `--force-with-lease` to a `git push` (may conflict with `git_push_pull`);
|
||||||
* `rm_root` – adds `--no-preserve-root` to `rm -rf /` command.
|
* `rm_root` – adds `--no-preserve-root` to `rm -rf /` command.
|
||||||
|
|
||||||
##### [Back to Contents](https://github.com/bhav09/thefuck#contents)
|
##### [Back to Contents](#contents)
|
||||||
|
|
||||||
## Creating your own rules
|
## Creating your own rules
|
||||||
|
|
||||||
@ -414,7 +414,7 @@ requires_output = True
|
|||||||
[utility functions for rules](https://github.com/nvbn/thefuck/tree/master/thefuck/utils.py),
|
[utility functions for rules](https://github.com/nvbn/thefuck/tree/master/thefuck/utils.py),
|
||||||
[app/os-specific helpers](https://github.com/nvbn/thefuck/tree/master/thefuck/specific/).
|
[app/os-specific helpers](https://github.com/nvbn/thefuck/tree/master/thefuck/specific/).
|
||||||
|
|
||||||
##### [Back to Contents](https://github.com/bhav09/thefuck#contents)
|
##### [Back to Contents](#contents)
|
||||||
|
|
||||||
## Settings
|
## Settings
|
||||||
|
|
||||||
@ -479,7 +479,7 @@ export THEFUCK_HISTORY_LIMIT='2000'
|
|||||||
export THEFUCK_NUM_CLOSE_MATCHES='5'
|
export THEFUCK_NUM_CLOSE_MATCHES='5'
|
||||||
```
|
```
|
||||||
|
|
||||||
##### [Back to Contents](https://github.com/bhav09/thefuck#contents)
|
##### [Back to Contents](#contents)
|
||||||
|
|
||||||
## Third-party packages with rules
|
## Third-party packages with rules
|
||||||
|
|
||||||
@ -500,7 +500,7 @@ thefuck_contrib_foo
|
|||||||
|
|
||||||
*The Fuck* will find rules located in the `rules` module.
|
*The Fuck* will find rules located in the `rules` module.
|
||||||
|
|
||||||
##### [Back to Contents](https://github.com/bhav09/thefuck#contents)
|
##### [Back to Contents](#contents)
|
||||||
|
|
||||||
## Experimental instant mode
|
## Experimental instant mode
|
||||||
|
|
||||||
@ -521,7 +521,7 @@ For example:
|
|||||||
eval $(thefuck --alias --enable-experimental-instant-mode)
|
eval $(thefuck --alias --enable-experimental-instant-mode)
|
||||||
```
|
```
|
||||||
|
|
||||||
##### [Back to Contents](https://github.com/bhav09/thefuck#contents)
|
##### [Back to Contents](#contents)
|
||||||
|
|
||||||
## Developing
|
## Developing
|
||||||
|
|
||||||
@ -543,4 +543,4 @@ Project License can be found [here](LICENSE.md).
|
|||||||
[homebrew]: https://brew.sh/
|
[homebrew]: https://brew.sh/
|
||||||
[linuxbrew]: https://linuxbrew.sh/
|
[linuxbrew]: https://linuxbrew.sh/
|
||||||
|
|
||||||
##### [Back to Contents](https://github.com/bhav09/thefuck#contents)
|
##### [Back to Contents](#contents)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user