From 3d3450d8c1502ff32059d00c623aee52b21fb1ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20Silkeb=C3=A6kken?= Date: Tue, 20 Aug 2013 17:07:18 +0200 Subject: [PATCH] Add Gundo statuslines --- powerline/config_files/config.json | 4 +++- .../themes/vim/plugin/gundo-preview.json | 19 +++++++++++++++++++ .../config_files/themes/vim/plugin/gundo.json | 19 +++++++++++++++++++ powerline/matchers/plugin/gundo.py | 13 +++++++++++++ 4 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 powerline/config_files/themes/vim/plugin/gundo-preview.json create mode 100644 powerline/config_files/themes/vim/plugin/gundo.json create mode 100644 powerline/matchers/plugin/gundo.py diff --git a/powerline/config_files/config.json b/powerline/config_files/config.json index aace2c63..e9a627e7 100644 --- a/powerline/config_files/config.json +++ b/powerline/config_files/config.json @@ -40,7 +40,9 @@ "quickfix": "quickfix", "powerline.matchers.plugin.nerdtree.nerdtree": "plugin/nerdtree", - "powerline.matchers.plugin.ctrlp.ctrlp": "plugin/ctrlp" + "powerline.matchers.plugin.ctrlp.ctrlp": "plugin/ctrlp", + "powerline.matchers.plugin.gundo.gundo": "plugin/gundo", + "powerline.matchers.plugin.gundo.gundo_preview": "plugin/gundo-preview" } }, "wm": { diff --git a/powerline/config_files/themes/vim/plugin/gundo-preview.json b/powerline/config_files/themes/vim/plugin/gundo-preview.json new file mode 100644 index 00000000..3ce202ea --- /dev/null +++ b/powerline/config_files/themes/vim/plugin/gundo-preview.json @@ -0,0 +1,19 @@ +{ + "default_module": "powerline.segments.plugin.gundo", + "segments": { + "left": [ + { + "type": "string", + "highlight_group": ["gundo.name", "file_name"], + "contents": "Undo diff" + }, + { + "type": "string", + "highlight_group": ["gundo.background", "background"], + "draw_soft_divider": false, + "draw_hard_divider": false, + "width": "auto" + } + ] + } +} diff --git a/powerline/config_files/themes/vim/plugin/gundo.json b/powerline/config_files/themes/vim/plugin/gundo.json new file mode 100644 index 00000000..0c1a336a --- /dev/null +++ b/powerline/config_files/themes/vim/plugin/gundo.json @@ -0,0 +1,19 @@ +{ + "default_module": "powerline.segments.plugin.gundo", + "segments": { + "left": [ + { + "type": "string", + "highlight_group": ["gundo.name", "file_name"], + "contents": "Undo tree" + }, + { + "type": "string", + "highlight_group": ["gundo.background", "background"], + "draw_soft_divider": false, + "draw_hard_divider": false, + "width": "auto" + } + ] + } +} diff --git a/powerline/matchers/plugin/gundo.py b/powerline/matchers/plugin/gundo.py new file mode 100644 index 00000000..1992f711 --- /dev/null +++ b/powerline/matchers/plugin/gundo.py @@ -0,0 +1,13 @@ +# vim:fileencoding=utf-8:noet + +import os + + +def gundo(matcher_info): + name = matcher_info['buffer'].name + return name and os.path.basename(name) == '__Gundo__' + + +def gundo_preview(matcher_info): + name = matcher_info['buffer'].name + return name and os.path.basename(name) == '__Gundo_Preview__'