fzf-19.sh
· 397 B · Bash
Исходник
# Files under the current directory
# - You can select multiple items with TAB key
vim **<TAB>
# Files under parent directory
vim ../**<TAB>
# Files under parent directory that match `fzf`
vim ../fzf**<TAB>
# Files under your home directory
vim ~/**<TAB>
# Directories under current directory (single-selection)
cd **<TAB>
# Directories under ~/github that match `fzf`
cd ~/github/fzf**<TAB>
1 | # Files under the current directory |
2 | # - You can select multiple items with TAB key |
3 | vim **<TAB> |
4 | |
5 | # Files under parent directory |
6 | vim ../**<TAB> |
7 | |
8 | # Files under parent directory that match `fzf` |
9 | vim ../fzf**<TAB> |
10 | |
11 | # Files under your home directory |
12 | vim ~/**<TAB> |
13 | |
14 | |
15 | # Directories under current directory (single-selection) |
16 | cd **<TAB> |
17 | |
18 | # Directories under ~/github that match `fzf` |
19 | cd ~/github/fzf**<TAB> |