summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-02-11 19:40:57 +0000
committerw0rp <devw0rp@gmail.com>2017-02-11 19:40:57 +0000
commitecbb27680563a50d4dd981f968d659ef20bfbe30 (patch)
tree3e60f1ad7840dce1351819cd191a4c7ca0a7330e /autoload
parentc33602534e205aa677521ce49a8054588d88bdc2 (diff)
downloadale-ecbb27680563a50d4dd981f968d659ef20bfbe30.zip
Replace every stdin-wrapper script with the new %t formatting support
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/util.vim17
1 files changed, 0 insertions, 17 deletions
diff --git a/autoload/ale/util.vim b/autoload/ale/util.vim
index 6c6f20b0..6367489c 100644
--- a/autoload/ale/util.vim
+++ b/autoload/ale/util.vim
@@ -1,23 +1,6 @@
" Author: w0rp <devw0rp@gmail.com>
" Description: Contains miscellaneous functions
-function! s:FindWrapperScript() abort
- for l:parent in split(&runtimepath, ',')
- " Expand the path to deal with ~ issues.
- let l:path = expand(l:parent . '/' . 'stdin-wrapper')
-
- if filereadable(l:path)
- if has('win32')
- return l:path . '.exe'
- endif
-
- return l:path
- endif
- endfor
-endfunction
-
-let g:ale#util#stdin_wrapper = s:FindWrapperScript()
-
" A null file for sending output to nothing.
let g:ale#util#nul_file = '/dev/null'