This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function fish_prompt | |
| # 1行目: カレントディレクトリ + gitブランチ | |
| printf '%s%s' (prompt_pwd) (fish_git_prompt) | |
| # 改行して 2行目に > | |
| printf '\n> ' | |
| end | |
| ~ |