knox revisó este gist . Ir a la revisión
1 file changed, 19 insertions
fzf-19.sh(archivo creado)
@@ -0,0 +1,19 @@ | |||
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> |
Siguiente
Anterior