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
I typed the comamdn with the parameter “-i”, but I can't interact with the termial , no > {光标位置} shown .
Here is the result.
➜ prometheus-2.41.0.darwin-arm64 z -i 8 /Users/chenzixin/Downloads/南京 11.5 /Users/chenzixin/Downloads 104 /Users/chenzixin/Downloads/prometheus-2.41.0.darwin-arm64 ➜ prometheus-2.41.0.darwin-arm64
The text was updated successfully, but these errors were encountered:
keywords are required, at least input a dot .
.
z -i something
or
z -i .
If you have fzf installed:
z -I something
z -I .
Sorry, something went wrong.
thanks for the reply
I recommend something like the following (for the fish shell):
function zi --wraps='z -i' --description 'alias zi=z -i and some smarts' if set -q argv[1] z -i $argv else z -i . end end
The bash/zsh version would be something like (untested)
#!/bin/sh zi() { if [ "$1" = "" ]; then z -i . else z -i "$@" fi }
No branches or pull requests
I typed the comamdn with the parameter “-i”, but I can't interact with the termial , no > {光标位置} shown .
Here is the result.
➜ prometheus-2.41.0.darwin-arm64 z -i
8 /Users/chenzixin/Downloads/南京
11.5 /Users/chenzixin/Downloads
104 /Users/chenzixin/Downloads/prometheus-2.41.0.darwin-arm64
➜ prometheus-2.41.0.darwin-arm64
The text was updated successfully, but these errors were encountered: