Update cheatsheets

This commit is contained in:
ivuorinen
2025-08-31 00:21:41 +00:00
parent 5985fac848
commit af1e54b296
12 changed files with 83 additions and 36 deletions

View File

@@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git
> Fuzzy finder.
> Similar to `sk`.
> More information: <https://github.com/junegunn/fzf>.
> More information: <https://github.com/junegunn/fzf#usage>.
- Start `fzf` on all files in the specified directory:
@@ -25,10 +25,10 @@ source: https://github.com/tldr-pages/tldr.git
`fzf {{[-q|--query]}} "{{query}}"`
- Start `fzf` on entries that start with core and end with either go, rb, or py:
- Start `fzf` on entries that start with `core` and end with either `go`, `rb`, or `py`:
`fzf {{[-q|--query]}} "^core go$ | rb$ | py$"`
- Start `fzf` on entries that not match pyc and match exactly travis:
- Start `fzf` on entries that not match `pyc` and match exactly `travis`:
`fzf {{[-q|--query]}} "!pyc 'travis"`
`fzf {{[-q|--query]}} "\!pyc 'travis'"`