Use tokens for client highlighting.

coverage
Juan Leñero 2017-10-20 21:24:07 -05:00 committed by GitHub
parent 0c4edde86b
commit 8708fcbee3
1 changed files with 11 additions and 7 deletions

View File

@ -2,18 +2,22 @@
> A simple, fast and user-friendly alternative to find.
- Find files under current dir that match foo:
- Find files under current dir that match a pattern:
`fd foo`
`fd {{pattern}}`
- Find files that begin with foo:
`fd '^foo'`
`fd {{'^foo'}}`
- Find files matching test with a specific extension and under a specific dir:
- Find files with a specific extension:
`fd --extension js test ./src`
`fd --extension {{.ext}} {{pattern}}`
- Find files matching config, include ignored and hidden files:
- Find files under a specific dir:
`fd --hidden --no-ignore config`
`fd {{pattern}} {{path/to/dir}}`
- Include ignored and hidden files in search:
`fd --hidden --no-ignore {{pattern}}`