最後活躍 1730170250

fzf-19.sh 原始檔案
1# Files under the current directory
2# - You can select multiple items with TAB key
3vim **<TAB>
4
5# Files under parent directory
6vim ../**<TAB>
7
8# Files under parent directory that match `fzf`
9vim ../fzf**<TAB>
10
11# Files under your home directory
12vim ~/**<TAB>
13
14
15# Directories under current directory (single-selection)
16cd **<TAB>
17
18# Directories under ~/github that match `fzf`
19cd ~/github/fzf**<TAB>