summaryrefslogtreecommitdiffstats
path: root/powerline/matchers/vim/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'powerline/matchers/vim/__init__.py')
-rw-r--r--powerline/matchers/vim/__init__.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/powerline/matchers/vim/__init__.py b/powerline/matchers/vim/__init__.py
new file mode 100644
index 0000000..f6de45e
--- /dev/null
+++ b/powerline/matchers/vim/__init__.py
@@ -0,0 +1,19 @@
+# vim:fileencoding=utf-8:noet
+from __future__ import (unicode_literals, division, absolute_import, print_function)
+
+import os
+
+from powerline.bindings.vim import vim_getbufoption, buffer_name
+
+
+def help(matcher_info):
+ return vim_getbufoption(matcher_info, 'buftype') == 'help'
+
+
+def cmdwin(matcher_info):
+ name = buffer_name(matcher_info)
+ return name and os.path.basename(name) == b'[Command Line]'
+
+
+def quickfix(matcher_info):
+ return vim_getbufoption(matcher_info, 'buftype') == 'quickfix'