summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorBjorn Neergaard <bjorn@neersighted.com>2016-10-11 09:54:14 -0500
committerBjorn Neergaard <bjorn@neersighted.com>2016-10-11 10:02:36 -0500
commitfc711a0615f6c8968ab29b1ac4c6c461dcd8db8f (patch)
tree1496035e0ec6a1d0bec7682dd0ba33d6c8a11798 /autoload
parentd8d08de26cb17c9319a08c0c5f611c6778260030 (diff)
downloadale-fc711a0615f6c8968ab29b1ac4c6c461dcd8db8f.zip
Clean and reorganize flags/preferences
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/sign.vim8
1 files changed, 0 insertions, 8 deletions
diff --git a/autoload/ale/sign.vim b/autoload/ale/sign.vim
index 9aba8684..23666287 100644
--- a/autoload/ale/sign.vim
+++ b/autoload/ale/sign.vim
@@ -20,14 +20,6 @@ if !hlexists('ALEWarning')
highlight link ALEWarning SpellCap
endif
-" Global variables for signs
-let g:ale_sign_error = get(g:, 'ale_sign_error', '>>')
-let g:ale_sign_warning = get(g:, 'ale_sign_warning', '--')
-" An offset which can be set for sign IDs.
-" This ID can be changed depending on what IDs are set for other plugins.
-" The dummy sign will use the ID exactly equal to the offset.
-let g:ale_sign_offset = get(g:, 'ale_sign_offset', 1000000)
-
" Signs show up on the left for error markers.
execute 'sign define ALEErrorSign text=' . g:ale_sign_error
\ . ' texthl=ALEErrorSign'