Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
fzf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
fzf
Commits
cb8e9727
Unverified
Commit
cb8e9727
authored
7 years ago
by
Junegunn Choi
Browse files
Options
Downloads
Patches
Plain Diff
Update README to add an example of _fzf_compgen_dir
/cc @chrisjohnson Close #1067 Close #1083
parent
c4185e81
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+14
-3
14 additions, 3 deletions
README.md
with
14 additions
and
3 deletions
README.md
+
14
−
3
View file @
cb8e9727
...
...
@@ -367,15 +367,26 @@ export FZF_COMPLETION_TRIGGER='~~'
# Options to fzf command
export
FZF_COMPLETION_OPTS
=
'+c -x'
# Use ag instead of the default find command for listing candidates.
# Use ag instead of the default find command for listing
path
candidates.
# - The first argument to the function is the base path to start traversal
# - Note that ag only lists files not directories
# - See the source code (completion.{bash,zsh}) for the details.
# - ag only lists files, so we use with-dir script to augment the output
_fzf_compgen_path
()
{
ag
-g
""
"
$1
"
ag
-g
""
"
$1
"
| with-dir
"
$1
"
}
# Use ag to generate the list for directory completion
_fzf_compgen_dir
()
{
ag
-g
""
"
$1
"
| only-dir
"
$1
"
}
```
`only-dir`
and
`with-dir`
scripts can be found
[
here
][
dir-scripts
]
. They are
written in Ruby, but you should be able to rewrite them in any language you
prefer.
[
dir-scripts
]:
https://gist.github.com/junegunn/8c3796a965f22e6a803fe53096ad7a75
#### Supported commands
On bash, fuzzy completion is enabled only for a predefined set of commands
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment