summaryrefslogtreecommitdiffstats
path: root/autoload/elm/io.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/elm/io.vim')
-rw-r--r--autoload/elm/io.vim12
1 files changed, 0 insertions, 12 deletions
diff --git a/autoload/elm/io.vim b/autoload/elm/io.vim
deleted file mode 100644
index 509a8f6a..00000000
--- a/autoload/elm/io.vim
+++ /dev/null
@@ -1,12 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elm') == -1
-
-" System IO
-
-" Craft a system command and run it, returning the output.
-function! elm#io#system(program, args)
- let cmd ="which " . a:program . " && " . a:program . " " . a:args
- return system(cmd)
-endfunction
-
-
-endif