Update symbol code points in the default config
This commit is contained in:
parent
5fde2dcd9d
commit
53fbfe15fe
|
@ -2,12 +2,12 @@
|
||||||
"common": {
|
"common": {
|
||||||
"dividers": {
|
"dividers": {
|
||||||
"left": {
|
"left": {
|
||||||
"hard": "⮀",
|
"hard": "",
|
||||||
"soft": "⮁"
|
"soft": ""
|
||||||
},
|
},
|
||||||
"right": {
|
"right": {
|
||||||
"hard": "⮂",
|
"hard": "",
|
||||||
"soft": "⮃"
|
"soft": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue