summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-05-28 16:47:32 +0100
committerw0rp <devw0rp@gmail.com>2018-05-28 16:47:32 +0100
commite49e7d52bc29a902a813a8f2f638249ee10ea316 (patch)
tree64eb22afa7cb6418ac46af3535e6703691d7a94d /plugin
parent8a659b7cc6ca1c9e7fc7c0d14541d1e12563b83b (diff)
downloadale-e49e7d52bc29a902a813a8f2f638249ee10ea316.zip
#1524 Remove the plugin conflict warnings
Diffstat (limited to 'plugin')
-rw-r--r--plugin/ale.vim10
1 files changed, 0 insertions, 10 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim
index 48ff531c..f63641b2 100644
--- a/plugin/ale.vim
+++ b/plugin/ale.vim
@@ -37,16 +37,6 @@ if has('nvim') && !has('nvim-0.2.0') && !get(g:, 'ale_use_deprecated_neovim')
execute 'echom ''Use `let g:ale_use_deprecated_neovim = 1` to silence this warning for now.'''
endif
-" This flag can be set to 0 to disable emitting conflict warnings.
-let g:ale_emit_conflict_warnings = get(g:, 'ale_emit_conflict_warnings', 1)
-
-if g:ale_emit_conflict_warnings
-\&& match(&runtimepath, '[/\\]ale[/\\]after') < 0
- " Add the after directory to the runtimepath
- " This is only done if the after directory isn't already in runtimepath
- let &runtimepath .= ',' . expand('<sfile>:p:h:h') . '/after'
-endif
-
" Set this flag so that other plugins can use it, like airline.
let g:loaded_ale = 1