mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 13:08:49 +00:00
Use fish -c string ... as the string
fallback.
We can again drop the prompt_pwd check.
This commit is contained in:
parent
84b08a4fe3
commit
431589a16a
3 changed files with 7 additions and 10 deletions
|
@ -26,8 +26,6 @@ if status --is-interactive
|
||||||
# When executed on fish 2.2.0, the `else' block after this would
|
# When executed on fish 2.2.0, the `else' block after this would
|
||||||
# force on 24-bit mode due to changes to in test behavior.
|
# force on 24-bit mode due to changes to in test behavior.
|
||||||
# These "XXX nostring" hacks were added for 2.3.1
|
# These "XXX nostring" hacks were added for 2.3.1
|
||||||
|
|
||||||
# Let's explain to the user what's going on.
|
|
||||||
set_color --bold
|
set_color --bold
|
||||||
echo "You appear to be trying to launch an old fish binary with newer scripts "
|
echo "You appear to be trying to launch an old fish binary with newer scripts "
|
||||||
echo "installed into" (set_color --underline)"$__fish_datadir"
|
echo "installed into" (set_color --underline)"$__fish_datadir"
|
||||||
|
|
|
@ -5,11 +5,6 @@ function prompt_pwd --description "Print the current working directory, shortene
|
||||||
__fish_print_help prompt_pwd
|
__fish_print_help prompt_pwd
|
||||||
return 0
|
return 0
|
||||||
end
|
end
|
||||||
if set -q $__is_launched_without_string
|
|
||||||
# There is no `string' builtin - do something sensible. XXX nostring
|
|
||||||
echo $PWD
|
|
||||||
return 0
|
|
||||||
end
|
|
||||||
|
|
||||||
# This allows overriding fish_prompt_pwd_dir_length from the outside (global or universal) without leaking it
|
# This allows overriding fish_prompt_pwd_dir_length from the outside (global or universal) without leaking it
|
||||||
set -q fish_prompt_pwd_dir_length
|
set -q fish_prompt_pwd_dir_length
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
if not contains string (builtin -n)
|
|
||||||
# XXX nostring
|
# XXX nostring
|
||||||
|
if not contains string (builtin -n)
|
||||||
function string
|
function string
|
||||||
if not set -q __is_launched_without_string
|
if not set -q __is_launched_without_string
|
||||||
if status --is-interactive
|
if status --is-interactive
|
||||||
|
@ -14,6 +14,10 @@ if not contains string (builtin -n)
|
||||||
set -g __is_launched_without_string 1
|
set -g __is_launched_without_string 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return 127
|
# We hope that in $__fish_bin_path is a newer fish that can do `string` for us.
|
||||||
|
|
||||||
|
set fish_user_paths $__fish_bin_dir $fish_user_paths
|
||||||
|
set string_cmd string \'$argv\'
|
||||||
|
fish -c "$string_cmd"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue