mirror of https://github.com/dense-analysis/ale
Add comment headers for plugin/ale files
This commit is contained in:
parent
043446998b
commit
1d4e035566
|
@ -1,6 +1,6 @@
|
|||
" This file sets up configuration settings for the ALE plugin.
|
||||
" Flags can be set in vimrc files and so on to disable particular features,
|
||||
" etc.
|
||||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: This file sets up configuration settings for the ALE plugin.
|
||||
" Flags can be set in vimrc files and so on to disable particular features
|
||||
|
||||
if exists('g:loaded_ale_flags')
|
||||
finish
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: Echoes lint message for the current line, if any
|
||||
|
||||
if exists('g:loaded_ale_cursor')
|
||||
finish
|
||||
endif
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: Draws error and warning signs into signcolumn
|
||||
|
||||
if exists('g:loaded_ale_sign')
|
||||
finish
|
||||
endif
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: Contains miscellaneous functions
|
||||
|
||||
if exists('g:loaded_ale_util')
|
||||
finish
|
||||
endif
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
" Author: w0rp <devw0rp@gmail.com>
|
||||
" Description: Main entry point for this plugin
|
||||
" Loads linters and manages lint jobs
|
||||
|
||||
if exists('g:loaded_ale_zmain')
|
||||
finish
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue