Update symbol code points in the default config

This commit is contained in:
Kim Silkebækken 2012-12-18 15:22:08 +01:00
parent 5fde2dcd9d
commit 53fbfe15fe
3 changed files with 7 additions and 7 deletions

View File

@ -2,12 +2,12 @@
"common": { "common": {
"dividers": { "dividers": {
"left": { "left": {
"hard": "", "hard": "",
"soft": "" "soft": ""
}, },
"right": { "right": {
"hard": "", "hard": "",
"soft": "" "soft": ""
} }
} }
}, },

View File

@ -70,7 +70,7 @@ def paste_indicator(text='PASTE'):
return text if int(vim.eval('&paste')) else None 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 a read-only indicator.
''' '''
return text if int(vim.eval('&readonly')) else None return text if int(vim.eval('&readonly')) else None

View File

@ -15,7 +15,7 @@
"name": "branch", "name": "branch",
"exclude_modes": ["nc"], "exclude_modes": ["nc"],
"priority": 60, "priority": 60,
"before": " " "before": " "
}, },
{ {
"name": "readonly_indicator", "name": "readonly_indicator",
@ -67,7 +67,7 @@
}, },
{ {
"type": "string", "type": "string",
"contents": " ", "contents": " ",
"highlight": ["line_current_symbol", "line_current"] "highlight": ["line_current_symbol", "line_current"]
}, },
{ {