Skip to content

Commit acccf8a

Browse files
committed
Fix TOC
1 parent 57c066f commit acccf8a

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,23 @@ Table of Contents
3333
* [Upgrading fzf](#upgrading-fzf)
3434
* [Building fzf](#building-fzf)
3535
* [Usage](#usage)
36-
* [Using the finder](#using-the-finder)
37-
* [Layout](#layout)
38-
* [Search syntax](#search-syntax)
39-
* [Environment variables](#environment-variables)
40-
* [Options](#options)
41-
* [Demo](#demo)
36+
* [Using the finder](#using-the-finder)
37+
* [Layout](#layout)
38+
* [Search syntax](#search-syntax)
39+
* [Environment variables](#environment-variables)
40+
* [Options](#options)
41+
* [Demo](#demo)
4242
* [Examples](#examples)
4343
* [`fzf-tmux` script](#fzf-tmux-script)
4444
* [Key bindings for command-line](#key-bindings-for-command-line)
4545
* [Fuzzy completion for bash and zsh](#fuzzy-completion-for-bash-and-zsh)
46-
* [Files and directories](#files-and-directories)
47-
* [Process IDs](#process-ids)
48-
* [Host names](#host-names)
49-
* [Environment variables / Aliases](#environment-variables--aliases)
50-
* [Settings](#settings)
51-
* [Supported commands](#supported-commands)
52-
* [Custom fuzzy completion](#custom-fuzzy-completion)
46+
* [Files and directories](#files-and-directories)
47+
* [Process IDs](#process-ids)
48+
* [Host names](#host-names)
49+
* [Environment variables / Aliases](#environment-variables--aliases)
50+
* [Settings](#settings)
51+
* [Supported commands](#supported-commands)
52+
* [Custom fuzzy completion](#custom-fuzzy-completion)
5353
* [Vim plugin](#vim-plugin)
5454
* [Advanced topics](#advanced-topics)
5555
* [Performance](#performance)
@@ -202,7 +202,7 @@ files excluding hidden ones. (You can override the default command with
202202
vim $(fzf)
203203
```
204204

205-
#### Using the finder
205+
### Using the finder
206206

207207
- `CTRL-K` / `CTRL-J` (or `CTRL-P` / `CTRL-N`) to move cursor up and down
208208
- `Enter` key to select the item, `CTRL-C` / `CTRL-G` / `ESC` to exit
@@ -211,7 +211,7 @@ vim $(fzf)
211211
- Mouse: scroll, click, double-click; shift-click and shift-scroll on
212212
multi-select mode
213213

214-
#### Layout
214+
### Layout
215215

216216
fzf by default starts in fullscreen mode, but you can make it start below the
217217
cursor with `--height` option.
@@ -234,7 +234,7 @@ default. For example,
234234
export FZF_DEFAULT_OPTS='--height 40% --layout=reverse --border'
235235
```
236236

237-
#### Search syntax
237+
### Search syntax
238238

239239
Unless otherwise specified, fzf starts in "extended-search mode" where you can
240240
type in multiple search terms delimited by spaces. e.g. `^music .mp3$ sbtrkt
@@ -262,7 +262,7 @@ or `py`.
262262
^core go$ | rb$ | py$
263263
```
264264

265-
#### Environment variables
265+
### Environment variables
266266

267267
- `FZF_DEFAULT_COMMAND`
268268
- Default command to use when input is tty
@@ -278,11 +278,11 @@ or `py`.
278278
- Default options
279279
- e.g. `export FZF_DEFAULT_OPTS="--layout=reverse --inline-info"`
280280

281-
#### Options
281+
### Options
282282

283283
See the man page (`man fzf`) for the full list of options.
284284

285-
#### Demo
285+
### Demo
286286
If you learn by watching videos, check out this screencast by [@samoshkin](https://github.com/samoshkin) to explore `fzf` features.
287287

288288
<a title="fzf - command-line fuzzy finder" href="https://www.youtube.com/watch?v=qgG5Jhi_Els">
@@ -371,7 +371,7 @@ More tips can be found on [the wiki page](https://github.com/junegunn/fzf/wiki/C
371371
Fuzzy completion for bash and zsh
372372
---------------------------------
373373
374-
#### Files and directories
374+
### Files and directories
375375
376376
Fuzzy completion for files and directories can be triggered if the word before
377377
the cursor ends with the trigger sequence, which is by default `**`.
@@ -400,7 +400,7 @@ cd **<TAB>
400400
cd ~/github/fzf**<TAB>
401401
```
402402
403-
#### Process IDs
403+
### Process IDs
404404
405405
Fuzzy completion for PIDs is provided for kill command.
406406
@@ -409,7 +409,7 @@ Fuzzy completion for PIDs is provided for kill command.
409409
kill -9 **<TAB>
410410
```
411411
412-
#### Host names
412+
### Host names
413413
414414
For ssh and telnet commands, fuzzy completion for hostnames is provided. The
415415
names are extracted from /etc/hosts and ~/.ssh/config.
@@ -419,15 +419,15 @@ ssh **<TAB>
419419
telnet **<TAB>
420420
```
421421
422-
#### Environment variables / Aliases
422+
### Environment variables / Aliases
423423
424424
```sh
425425
unset **<TAB>
426426
export **<TAB>
427427
unalias **<TAB>
428428
```
429429
430-
#### Settings
430+
### Settings
431431
432432
```sh
433433
# Use ~~ as the trigger sequence instead of the default **
@@ -465,7 +465,7 @@ _fzf_comprun() {
465465
}
466466
```
467467
468-
#### Supported commands
468+
### Supported commands
469469
470470
On bash, fuzzy completion is enabled only for a predefined set of commands
471471
(`complete | grep _fzf` to see the list). But you can enable it for other
@@ -477,7 +477,7 @@ _fzf_setup_completion path ag git kubectl
477477
_fzf_setup_completion dir tree
478478
```
479479
480-
#### Custom fuzzy completion
480+
### Custom fuzzy completion
481481
482482
_**(Custom completion API is experimental and subject to change)**_
483483

0 commit comments

Comments
 (0)