Added more Icons, that work in `compatible` mode.
This commit is contained in:
parent
2798a9d38e
commit
d65aea3a64
|
@ -165,12 +165,12 @@ set.
|
||||||
|--------------|---------------------|-------------------|--------------------------
|
|--------------|---------------------|-------------------|--------------------------
|
||||||
| `↑4` | `↑4` | 4 | Number of commits your repository is ahead of your remote branch
|
| `↑4` | `↑4` | 4 | Number of commits your repository is ahead of your remote branch
|
||||||
| `↓5` | `↓5` | 5 | Number of commits your repository is behind of your remote branch
|
| `↓5` | `↓5` | 5 | Number of commits your repository is behind of your remote branch
|
||||||
| None | `⍟3` | 3 | Number of stashes, here 3.
|
| `⍟3` | `⍟3` | 3 | Number of stashes, here 3.
|
||||||
| `●` | `●` |  | There are unstaged changes in your working copy
|
| `●` | `●` |  | There are unstaged changes in your working copy
|
||||||
| `✚` | `✚` |  | There are staged changes in your working copy
|
| `✚` | `✚` |  | There are staged changes in your working copy
|
||||||
| `?` | `?` |  | There are files in your working copy, that are unknown to your repository
|
| `?` | `?` |  | There are files in your working copy, that are unknown to your repository
|
||||||
| `→` | `→` |  | The name of your branch differs from its tracking branch.
|
| `→` | `→` |  | The name of your branch differs from its tracking branch.
|
||||||
| None | `☿` |  | A mercurial bookmark is active.
|
| `☿` | `☿` |  | A mercurial bookmark is active.
|
||||||
| `@` |  |  | Branch Icon
|
| `@` |  |  | Branch Icon
|
||||||
| None | None | 2c3705 | The current commit hash. Here "2c3705"
|
| None | None | 2c3705 | The current commit hash. Here "2c3705"
|
||||||
| None | None |  | Repository is a git repository
|
| None | None |  | Repository is a git repository
|
||||||
|
|
|
@ -81,21 +81,21 @@ case $POWERLEVEL9K_MODE in
|
||||||
'compatible')
|
'compatible')
|
||||||
LEFT_SEGMENT_SEPARATOR="\u2B80" # ⮀
|
LEFT_SEGMENT_SEPARATOR="\u2B80" # ⮀
|
||||||
RIGHT_SEGMENT_SEPARATOR="\u2B82" # ⮂
|
RIGHT_SEGMENT_SEPARATOR="\u2B82" # ⮂
|
||||||
ROOT_ICON='*R*'
|
ROOT_ICON="\u26A1" # ⚡
|
||||||
RUBY_ICON=''
|
RUBY_ICON=''
|
||||||
AWS_ICON="AWS:"
|
AWS_ICON="AWS:"
|
||||||
BACKGROUND_JOBS_ICON="\u2699" # ⚙
|
BACKGROUND_JOBS_ICON="\u2699" # ⚙
|
||||||
TEST_ICON=''
|
TEST_ICON=''
|
||||||
OK_ICON=''
|
OK_ICON="\u2713" # ✓
|
||||||
FAIL_ICON='x'
|
FAIL_ICON="\u2718" # ✘
|
||||||
VCS_UNTRACKED_ICON='?'
|
VCS_UNTRACKED_ICON='?'
|
||||||
VCS_UNSTAGED_ICON="\u25CF" # ●
|
VCS_UNSTAGED_ICON="\u25CF" # ●
|
||||||
VCS_STAGED_ICON="\u271A" # ✚
|
VCS_STAGED_ICON="\u271A" # ✚
|
||||||
VCS_STASH_ICON=''
|
VCS_STASH_ICON="\u235F" # ⍟
|
||||||
VCS_INCOMING_CHANGES="\u2193" # ↓
|
VCS_INCOMING_CHANGES="\u2193" # ↓
|
||||||
VCS_OUTGOING_CHANGES="\u2191" # ↑
|
VCS_OUTGOING_CHANGES="\u2191" # ↑
|
||||||
VCS_TAG_ICON=''
|
VCS_TAG_ICON=''
|
||||||
VCS_BOOKMARK_ICON=''
|
VCS_BOOKMARK_ICON="\u263F" # ☿
|
||||||
VCS_COMMIT_ICON=''
|
VCS_COMMIT_ICON=''
|
||||||
VCS_BRANCH_ICON='@'
|
VCS_BRANCH_ICON='@'
|
||||||
VCS_REMOTE_BRANCH_ICON="\u2192" # →
|
VCS_REMOTE_BRANCH_ICON="\u2192" # →
|
||||||
|
|
Loading…
Reference in New Issue