Skip to content

Commit

Permalink
Update symbol code points in the default config
Browse files Browse the repository at this point in the history
  • Loading branch information
Lokaltog committed Dec 18, 2012
1 parent 5fde2dc commit 53fbfe1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions powerline/config.json
Expand Up @@ -2,12 +2,12 @@
"common": {
"dividers": {
"left": {
"hard": "",
"soft": ""
"hard": "",
"soft": ""
},
"right": {
"hard": "",
"soft": ""
"hard": "",
"soft": ""
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion powerline/ext/vim/segments/core.py
Expand Up @@ -70,7 +70,7 @@ def paste_indicator(text='PASTE'):
return text if int(vim.eval('&paste')) else None


def readonly_indicator(text=u''):
def readonly_indicator(text=u''):
'''Return a read-only indicator.
'''
return text if int(vim.eval('&readonly')) else None
Expand Down
4 changes: 2 additions & 2 deletions powerline/themes/vim/default.json
Expand Up @@ -15,7 +15,7 @@
"name": "branch",
"exclude_modes": ["nc"],
"priority": 60,
"before": " "
"before": " "
},
{
"name": "readonly_indicator",
Expand Down Expand Up @@ -67,7 +67,7 @@
},
{
"type": "string",
"contents": " ",
"contents": " ",
"highlight": ["line_current_symbol", "line_current"]
},
{
Expand Down

2 comments on commit 53fbfe1

@ArnaudWopata
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What action is required by user about these changes? My agnoster theme is broken 😒

@Lokaltog
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You need to use a newer font or the font patcher included in this repo. Check out my powerline-fonts repo for pre-patched fonts.

Please sign in to comment.