diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2018-12-26 10:56:23 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2018-12-26 10:56:23 +0100 |
commit | aad3df96e795b314d31171fea54b7455076d1d7b (patch) | |
tree | de25758c43c2dee3a151550c81a0a7d71cb4e86a /autoload | |
parent | 629a1e1c93145e779fc243614f18b606f1e53e0c (diff) | |
download | vim-polyglot-aad3df96e795b314d31171fea54b7455076d1d7b.tar.gz vim-polyglot-aad3df96e795b314d31171fea54b7455076d1d7b.zip |
Update
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/python/utils.vim | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/autoload/python/utils.vim b/autoload/python/utils.vim deleted file mode 100644 index 51ba9ef1..00000000 --- a/autoload/python/utils.vim +++ /dev/null @@ -1,21 +0,0 @@ -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 |