FISH - 如何隐藏提示中的主机名/计算机?

FISH - 如何隐藏提示中的主机名/计算机?

为了便于理解,我使用的是 FISH 3.1.0。

我查看了一下fish_config,但没有任何提示选项只是删除主机名/计算机,而保持其余部分不变。

有没有办法保留大部分默认提示,但只删除开头的那部分?

我只是使用默认提示。以下是完整使用type fish_prompt

fish_prompt is a function with definition
# Defined in /usr/share/fish/functions/fish_prompt.fish @ line 4
function fish_prompt --description 'Write out the prompt'
    set -l last_pipestatus $pipestatus
    set -l normal (set_color normal)

    # Color the prompt differently when we're root
    set -l color_cwd $fish_color_cwd
    set -l prefix
    set -l suffix '>'
    if contains -- $USER root toor
        if set -q fish_color_cwd_root
            set color_cwd $fish_color_cwd_root
        end
        set suffix '#'
    end

    # If we're running via SSH, change the host color.
    set -l color_host $fish_color_host
    if set -q SSH_TTY
        set color_host $fish_color_host_remote
    end

    # Write pipestatus
    set -l prompt_status (__fish_print_pipestatus " [" "]" "|" (set_color 
    $fish_color_status) (set_color --bold $fish_color_status) $last_pipestatus)

    echo -n -s (set_color $fish_color_user) "$USER" $normal @ (set_color 
    $color_host) (prompt_hostname) $normal ' ' (set_color $color_cwd) 
(prompt_pwd) $normal (fish_vcs_prompt) $normal $prompt_status $suffix " "                       
end

答案1

  1. funced fish_prompt
  2. 在最后echo一行,删除要删除的内容。保存并退出编辑器
  3. 系统可能会提示您保存该函数,请执行此操作。如果没有提示,请执行funcsave fish_prompt

相关内容