Skip to content

Commit

Permalink
docs: fix incorrect git segment icon info
Browse files Browse the repository at this point in the history
  • Loading branch information
benallred committed Apr 24, 2021
1 parent af5ec20 commit 608b486
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs/docs/segment-git.md
Expand Up @@ -36,9 +36,9 @@ Local changes can also shown by default using the following syntax for both the

- branch_icon: `string` - the icon to use in front of the git branch name - defaults to `\uE0A0 `
- display_branch_status: `boolean` - display the branch status or not - defaults to `true`
- branch_identical_icon: `string` - the icon to display when remote and local are identical - defaults to `\uF0C9`
- branch_ahead_icon: `string` - the icon to display when the local branch is ahead of its remote - defaults to `\uF176`
- branch_behind_icon: `string` - the icon to display when the local branch is behind its remote - defaults to `\uF175`
- branch_identical_icon: `string` - the icon to display when remote and local are identical - defaults to `\u2261`
- branch_ahead_icon: `string` - the icon to display when the local branch is ahead of its remote - defaults to `\u2191`
- branch_behind_icon: `string` - the icon to display when the local branch is behind its remote - defaults to `\u2193`
- branch_gone_icon: `string` - the icon to display when there's no remote branch - defaults to `\u2262`

### Status
Expand Down
8 changes: 4 additions & 4 deletions themes/schema.json
Expand Up @@ -515,19 +515,19 @@
"type": "string",
"title": "Branch Identical Icon",
"description": "The icon to display when remote and local are identical",
"default": "\uF0C9"
"default": "\u2261"
},
"branch_ahead_icon": {
"type": "string",
"title": "Branch Ahead Icon",
"description": "The icon to display when the local branch is ahead of its remote",
"default": "\uF176"
"default": "\u2191"
},
"branch_behind_icon": {
"type": "string",
"title": "Branch Behind Icon",
"description": "The icon to display when the local branch is behind its remote",
"default": "\uF175"
"default": "\u2193"
},
"branch_gone_icon": {
"type": "string",
Expand Down Expand Up @@ -649,7 +649,7 @@
"type": "boolean",
"title": "Color Background",
"description": "Color the background or foreground",
"default": false
"default": true
},
"local_changes_color": {
"$ref": "#/definitions/color"
Expand Down

0 comments on commit 608b486

Please sign in to comment.