Update symbol code points in the default config
This commit is contained in:
parent
5fde2dcd9d
commit
53fbfe15fe
|
@ -2,12 +2,12 @@
|
|||
"common": {
|
||||
"dividers": {
|
||||
"left": {
|
||||
"hard": "⮀",
|
||||
"soft": "⮁"
|
||||
"hard": "",
|
||||
"soft": ""
|
||||
},
|
||||
"right": {
|
||||
"hard": "⮂",
|
||||
"soft": "⮃"
|
||||
"hard": "",
|
||||
"soft": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
"name": "branch",
|
||||
"exclude_modes": ["nc"],
|
||||
"priority": 60,
|
||||
"before": "⭠ "
|
||||
"before": " "
|
||||
},
|
||||
{
|
||||
"name": "readonly_indicator",
|
||||
|
@ -67,7 +67,7 @@
|
|||
},
|
||||
{
|
||||
"type": "string",
|
||||
"contents": "⭡ ",
|
||||
"contents": " ",
|
||||
"highlight": ["line_current_symbol", "line_current"]
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue