We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inspired from fish behavior, I want path auto complete when hitting <Tab> after a variable storing a path.
fish
<Tab>
Example:
$ tree lib lib └── random └── test.txt $ let mypath = "./lib" $ cd $mypath/ # pressing TAB here should autocomplete as if we're doing `cd ./lib`
This is also useful for storing common paths in env vars:
$ $env.I3CONF /home/<....>/.config/i3 $ vim $env.I3CONF/ # pressing TAB here should autocomplete as if we're doing `vim ~/.config/i3/`
Can't think of anything to replicate this behavior.
Test the behavior in Fish which has this feature
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Related problem
Inspired from
fish
behavior, I want path auto complete when hitting<Tab>
after a variable storing a path.Describe the solution you'd like
Example:
This is also useful for storing common paths in env vars:
Describe alternatives you've considered
Can't think of anything to replicate this behavior.
Additional context and details
Test the behavior in Fish which has this feature
The text was updated successfully, but these errors were encountered: