-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #210 from rsteube/traverse
added traverse
- Loading branch information
Showing
5 changed files
with
76 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: traverse | ||
flags: | ||
--gitdir=: .git folder | ||
--gitworktree=: root of the working directory for a non-bare repository | ||
--parent=: first parent directory containing any of the given names/directories | ||
--tempdir=: default directory to use for temporary files | ||
--usercachedir=: root directory to use for user-specific cached data | ||
--userconfigdir=: default root directory to use for user-specific configuration data | ||
--userhomedir=: current user's home directory | ||
--xdgcachehome=: cache directory (fallback to UserCacheDir) | ||
--xdgconfighome=: home directory (fallback to UserConfigDir) | ||
completion: | ||
flag: | ||
gitdir: ["$files", "$chdir($gitdir)"] | ||
gitworktree: ["$files", "$chdir($gitworktree)"] | ||
parent: ["$files", "$chdir($parent([go.mod, go.sum]))"] | ||
tempdir: ["$files", "$chdir($tempdir)"] | ||
usercachedir: ["$files", "$chdir($usercachedir)"] | ||
userconfigdir: ["$files", "$chdir($userconfigdir)"] | ||
userhomedir: ["$files", "$chdir($userhomedir)"] | ||
xdgcachehome: ["$files", "$chdir($xdgcachehome)"] | ||
xdgconfighome: ["$files", "$chdir($xdgconfighome)"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters