web-dev-qa-db-ja.com

ターミナルフィッシュプロンプトブランク

だから私は魚のシェルターミナルプロンプトを変更しようとしていますが、複雑すぎるものを変更するたびに(色の変更とプロンプトの再配置を超えて)、空白になります。

ArchLinuxを実行しています。

私はたくさんのターミナルエミュレータを試しました。シロアリ、キティ、konsole、シンプルなターミナル、rxvt-u、用語。通常のターミナルエミュレータはどれも、私が期待しているプロンプトを表示しません。

しかし、機能したのは、ビジュアルスタジオコード内のターミナルエミュレーターでした。

私は手に入れることができる限り多くのランダムな異なるプロンプトを試しましたが、それらはすべて、ビジュアルスタジオコードを除いてどこでも空白に見えます。

ターミナルプロンプトを本来の外観にする方法はありますか?

要するに、それはこのように見えます

enter image description here

このように見えるべきとき

enter image description here

~/.config/fish/functions/fish_Prompt.fishの内容は次のとおりです

# name: sashimi
function fish_Prompt
  set -l last_status $status
  set -l cyan (set_color -o cyan)
  set -l yellow (set_color -o yellow)
  set -g red (set_color -o red)
  set -g blue (set_color -o blue)
  set -l green (set_color -o green)
  set -g normal (set_color normal)

  set -l ahead (_git_ahead)
  set -g whitespace ' '

  if test $last_status = 0
    set initial_indicator "$green◆"
    set status_indicator "$normal❯$cyan❯$green❯"
  else
    set initial_indicator "$red✖ $last_status"
    set status_indicator "$red❯$red❯$red❯"
  end
  set -l cwd $cyan(basename (Prompt_pwd))

  if [ (_git_branch_name) ]

    if test (_git_branch_name) = 'master'
      set -l git_branch (_git_branch_name)
      set git_info "$normal git:($red$git_branch$normal)"
    else
      set -l git_branch (_git_branch_name)
      set git_info "$normal git:($blue$git_branch$normal)"
    end

    if [ (_is_git_dirty) ]
      set -l dirty "$yellow ✗"
      set git_info "$git_info$dirty"
    end
  end

  # Notify if a command took more than 5 minutes
  if [ "$CMD_DURATION" -gt 300000 ]
    echo The last command took (math "$CMD_DURATION/1000") seconds.
  end

  echo -n -s $initial_indicator $whitespace $cwd $git_info $whitespace $ahead $status_indicator $whitespace
end

function _git_ahead
  set -l commits (command git rev-list --left-right '@{upstream}...HEAD' ^/dev/null)
  if [ $status != 0 ]
    return
  end
  set -l behind (count (for arg in $commits; echo $arg; end | grep '^<'))
  set -l ahead  (count (for arg in $commits; echo $arg; end | grep -v '^<'))
  switch "$ahead $behind"
    case ''     # no upstream
    case '0 0'  # equal to upstream
      return
    case '* 0'  # ahead of upstream
      echo "$blue↑$normal_c$ahead$whitespace"
    case '0 *'  # behind upstream
      echo "$red↓$normal_c$behind$whitespace"
    case '*'    # diverged from upstream
      echo "$blue↑$normal$ahead $red↓$normal_c$behind$whitespace"
  end
end

function _git_branch_name
  echo (command git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||')
end

function _is_git_dirty
  echo (command git status -s --ignore-submodules=dirty ^/dev/null)
end

2

これは、Unicodeに対応していないロケールで非ASCII文字を使用することによってトリガーされるfishのバグです。

ロケールをUTF-8を処理できるものに設定します(つまり、デフォルトの「C」ではありません)

3
faho