summaryrefslogtreecommitdiffstats
path: root/powerline/matchers/vim/plugin/commandt.py
diff options
context:
space:
mode:
Diffstat (limited to 'powerline/matchers/vim/plugin/commandt.py')
-rw-r--r--powerline/matchers/vim/plugin/commandt.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/powerline/matchers/vim/plugin/commandt.py b/powerline/matchers/vim/plugin/commandt.py
new file mode 100644
index 0000000..7eefe9b
--- /dev/null
+++ b/powerline/matchers/vim/plugin/commandt.py
@@ -0,0 +1,14 @@
+# 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 commandt(matcher_info):
+ name = buffer_name(matcher_info)
+ return (
+ vim_getbufoption(matcher_info, 'filetype') == 'command-t'
+ or (name and os.path.basename(name) == b'GoToFile')
+ )