2020-02-08 16:48:41 +08:00
|
|
|
#RUN: %fish %s
|
2020-10-26 12:00:59 +08:00
|
|
|
mkdir -p __fish_complete_directories/
|
|
|
|
cd __fish_complete_directories
|
|
|
|
mkdir -p test/buildroot
|
|
|
|
mkdir -p test/fish_expand_test
|
2020-02-08 16:48:41 +08:00
|
|
|
mkdir -p test/data/abc
|
|
|
|
mkdir -p test/data/abcd
|
|
|
|
touch test/data/af
|
|
|
|
touch test/data/abcdf
|
|
|
|
mkdir -p test/data/xy
|
|
|
|
mkdir -p test/data/xyz
|
|
|
|
touch test/data/xyf
|
|
|
|
touch test/data/xyzf
|
|
|
|
__fish_complete_directories test/z
|
|
|
|
# No match - no output!
|
|
|
|
__fish_complete_directories test/d
|
|
|
|
#CHECK: test/data/ Directory
|
|
|
|
#CHECK: test/buildroot/ Directory
|
2020-03-18 04:45:49 +08:00
|
|
|
#CHECK: test/fish_expand_test/ Directory
|
2020-02-08 16:48:41 +08:00
|
|
|
__fish_complete_directories test/data
|
|
|
|
#CHECK: test/data/ Directory
|
|
|
|
__fish_complete_directories test/data/
|
|
|
|
#CHECK: test/data/abc/ Directory
|
|
|
|
#CHECK: test/data/abcd/ Directory
|
|
|
|
#CHECK: test/data/xy/ Directory
|
|
|
|
#CHECK: test/data/xyz/ Directory
|
|
|
|
__fish_complete_directories test/data/abc 'abc dirs'
|
|
|
|
#CHECK: test/data/abc/ abc dirs
|
|
|
|
#CHECK: test/data/abcd/ abc dirs
|