From 53fbfe15fead8cc7598bcb4ee9714a221ab7e446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20Silkeb=C3=A6kken?= Date: Tue, 18 Dec 2012 15:22:08 +0100 Subject: [PATCH] Update symbol code points in the default config --- powerline/config.json | 8 ++++---- powerline/ext/vim/segments/core.py | 2 +- powerline/themes/vim/default.json | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/powerline/config.json b/powerline/config.json index 5f745f9b..70c85d46 100644 --- a/powerline/config.json +++ b/powerline/config.json @@ -2,12 +2,12 @@ "common": { "dividers": { "left": { - "hard": "⮀", - "soft": "⮁" + "hard": "", + "soft": "" }, "right": { - "hard": "⮂", - "soft": "⮃" + "hard": "", + "soft": "" } } }, diff --git a/powerline/ext/vim/segments/core.py b/powerline/ext/vim/segments/core.py index c47a06c4..5fcdb4c2 100644 --- a/powerline/ext/vim/segments/core.py +++ b/powerline/ext/vim/segments/core.py @@ -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 diff --git a/powerline/themes/vim/default.json b/powerline/themes/vim/default.json index f4b2b6f7..c9ce2ca0 100644 --- a/powerline/themes/vim/default.json +++ b/powerline/themes/vim/default.json @@ -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"] }, {