summaryrefslogtreecommitdiffstats
path: root/autoload/python/utils.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2016-09-11 13:25:03 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2016-09-11 13:25:03 +0200
commitb8d993932931549cc2bf8158abc9bad026d14c11 (patch)
tree397b353c1113a7e0e48e7dba478137daf06ddbf5 /autoload/python/utils.vim
parent0244e228faf6ee71750cbca3bdcd18411a927d22 (diff)
downloadvim-polyglot-b8d993932931549cc2bf8158abc9bad026d14c11.tar.gz
vim-polyglot-b8d993932931549cc2bf8158abc9bad026d14c11.zip
Add python compiler, closes #147
Diffstat (limited to 'autoload/python/utils.vim')
-rw-r--r--autoload/python/utils.vim21
1 files changed, 21 insertions, 0 deletions
diff --git a/autoload/python/utils.vim b/autoload/python/utils.vim
new file mode 100644
index 00000000..51ba9ef1
--- /dev/null
+++ b/autoload/python/utils.vim
@@ -0,0 +1,21 @@
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'python-compiler') == -1
+
+" Sometimes Python issues debugging messages
+" which don't belong to a call stack context
+" this function filters these messages
+function! python#utils#fix_qflist() " {{{
+ let l:traceback = []
+ let l:qflist = getqflist()
+
+ for l:item in l:qflist
+ if !empty(l:item.type)
+ call add(l:traceback, l:item)
+ endif
+ endfor
+
+ if !empty(l:traceback)
+ call setqflist(l:traceback)
+ endif
+endfunction " }}}
+
+endif