mirror of
https://github.com/Llewellynvdm/zoxide.git
synced 2024-11-25 05:57:34 +00:00
Remove unnecessary echo
This commit is contained in:
parent
7e6cf62c34
commit
a80f20520e
@ -10,7 +10,7 @@
|
|||||||
# Default prompt for Nushell.
|
# Default prompt for Nushell.
|
||||||
def __zoxide_prompt [] {
|
def __zoxide_prompt [] {
|
||||||
let git = $'(do -i {git rev-parse --abbrev-ref HEAD} | str trim)'
|
let git = $'(do -i {git rev-parse --abbrev-ref HEAD} | str trim)'
|
||||||
let git = (if (echo $git | str length) == 0 {
|
let git = (if ($git | str length) == 0 {
|
||||||
''
|
''
|
||||||
} {
|
} {
|
||||||
build-string (char lparen) (ansi cb) $git (ansi reset) (char rparen)
|
build-string (char lparen) (ansi cb) $git (ansi reset) (char rparen)
|
||||||
@ -55,17 +55,17 @@ $'zoxide: PWD hooks are not supported on Nushell.(char nl)Use (char sq)zoxide in
|
|||||||
# Jump to a directory using only keywords.
|
# Jump to a directory using only keywords.
|
||||||
def __zoxide_z [...rest:string] {
|
def __zoxide_z [...rest:string] {
|
||||||
if (shells | where active == $true | get name) != filesystem {
|
if (shells | where active == $true | get name) != filesystem {
|
||||||
if (echo $rest | length) > 1 {
|
if ($rest | length) > 1 {
|
||||||
$'zoxide: can only jump directories on filesystem(char nl)'
|
$'zoxide: can only jump directories on filesystem(char nl)'
|
||||||
} {
|
} {
|
||||||
cd (echo $rest)
|
cd $rest
|
||||||
{%- if echo %}
|
{%- if echo %}
|
||||||
pwd
|
pwd
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
}
|
}
|
||||||
} {
|
} {
|
||||||
let arg0 = (echo $rest | append '~' | first 1);
|
let arg0 = ($rest | append '~' | first 1);
|
||||||
if (echo $rest | length) <= 1 && ($arg0 == '-' || (echo $arg0 | path expand | path exists)) {
|
if ($rest | length) <= 1 && ($arg0 == '-' || ($arg0 | path expand | path exists)) {
|
||||||
cd $arg0
|
cd $arg0
|
||||||
} {
|
} {
|
||||||
cd $'(zoxide query --exclude (pwd) -- $rest | str trim)'
|
cd $'(zoxide query --exclude (pwd) -- $rest | str trim)'
|
||||||
|
Loading…
Reference in New Issue
Block a user