summaryrefslogtreecommitdiffstats
path: root/autoload/elm/io.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2017-09-27 20:52:13 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2017-09-27 20:52:13 +0200
commit7673a61990d4062adebbe49f71067b0aad90382a (patch)
tree06f6a5e83257abb59930153e15e0644b504ac94b /autoload/elm/io.vim
parent6a12aa87f41b02a68cd8e6b494e5400367c2b028 (diff)
downloadvim-polyglot-7673a61990d4062adebbe49f71067b0aad90382a.tar.gz
vim-polyglot-7673a61990d4062adebbe49f71067b0aad90382a.zip
Change elm provider, closes #224
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