選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。

25 行
523B

  1. function fish_title
  2. # Just calculate this once, to save a few cycles when displaying the prompt
  3. if not set -q __fish_prompt_hostname
  4. set -g __fish_prompt_hostname (hostname|cut -d . -f 1)
  5. end
  6. set -l prefix
  7. set -l suffix
  8. switch $USER
  9. case root toor
  10. set prefix "$__fish_prompt_hostname:"
  11. set suffix '#'
  12. case '*'
  13. set prefix "$USER@$__fish_prompt_hostname:"
  14. set suffix '>'
  15. end
  16. if [ "$XDG_SESSION_TYPE" != "x11" ]
  17. echo -n -s "$prefix"
  18. end
  19. echo -n -s (prompt_pwd) " $suffix $_"
  20. end