2016-10-03 18:41:02 +00:00
|
|
|
" Author: w0rp <devw0rp@gmail.com>
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
" Description: Main entry point for the plugin: sets up prefs and autocommands
|
|
|
|
" Preferences can be set in vimrc files and so on to configure ale
|
2016-09-08 23:23:26 +00:00
|
|
|
|
2016-10-11 14:54:14 +00:00
|
|
|
" Sanity Checks
|
|
|
|
|
2017-02-14 09:18:54 +00:00
|
|
|
if exists('g:loaded_ale_dont_use_this_in_other_plugins_please')
|
2016-09-08 23:23:26 +00:00
|
|
|
finish
|
|
|
|
endif
|
2016-10-25 13:09:58 +00:00
|
|
|
|
2017-02-14 09:18:54 +00:00
|
|
|
" Set a special flag used only by this plugin for preventing doubly
|
|
|
|
" loading the script.
|
|
|
|
let g:loaded_ale_dont_use_this_in_other_plugins_please = 1
|
2016-09-08 23:23:26 +00:00
|
|
|
|
2016-10-10 12:16:32 +00:00
|
|
|
" A flag for detecting if the required features are set.
|
|
|
|
if has('nvim')
|
2016-11-04 10:17:49 +00:00
|
|
|
let s:has_features = has('timers')
|
2016-10-10 12:16:32 +00:00
|
|
|
else
|
2016-11-04 10:17:49 +00:00
|
|
|
" Check if Job and Channel functions are available, instead of the
|
|
|
|
" features. This works better on old MacVim versions.
|
|
|
|
let s:has_features = has('timers') && exists('*job_start') && exists('*ch_close_in')
|
2016-10-10 12:16:32 +00:00
|
|
|
endif
|
|
|
|
|
2016-11-04 10:17:49 +00:00
|
|
|
if !s:has_features
|
2017-02-13 23:48:36 +00:00
|
|
|
" Only output a warning if editing some special files.
|
|
|
|
if index(['', 'gitcommit'], &filetype) == -1
|
2017-11-15 12:00:08 +00:00
|
|
|
execute 'echoerr ''ALE requires NeoVim >= 0.1.5 or Vim 8 with +timers +job +channel'''
|
|
|
|
execute 'echoerr ''Please update your editor appropriately.'''
|
2017-02-13 23:48:36 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
" Stop here, as it won't work.
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2017-10-26 11:26:16 +00:00
|
|
|
" 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
|
2017-10-27 08:53:13 +00:00
|
|
|
\&& match(&runtimepath, '[/\\]ale[/\\]after') < 0
|
2017-10-26 11:26:16 +00:00
|
|
|
" Add the after directory to the runtimepath
|
2017-10-27 08:53:13 +00:00
|
|
|
" This is only done if the after directory isn't already in runtimepath
|
2017-10-26 11:26:16 +00:00
|
|
|
let &runtimepath .= ',' . expand('<sfile>:p:h:h') . '/after'
|
|
|
|
endif
|
2017-03-06 23:15:28 +00:00
|
|
|
|
2017-02-14 09:18:54 +00:00
|
|
|
" Set this flag so that other plugins can use it, like airline.
|
|
|
|
let g:loaded_ale = 1
|
|
|
|
|
2017-02-10 09:45:42 +00:00
|
|
|
" Set the TMPDIR environment variable if it is not set automatically.
|
|
|
|
" This can automatically fix some environments.
|
|
|
|
if has('unix') && empty($TMPDIR)
|
|
|
|
let $TMPDIR = '/tmp'
|
|
|
|
endif
|
|
|
|
|
2016-10-24 19:21:32 +00:00
|
|
|
" This global variable is used internally by ALE for tracking information for
|
|
|
|
" each buffer which linters are being run against.
|
2016-10-23 21:41:00 +00:00
|
|
|
let g:ale_buffer_info = {}
|
2016-10-11 14:54:14 +00:00
|
|
|
|
|
|
|
" User Configuration
|
|
|
|
|
2016-10-25 13:09:58 +00:00
|
|
|
" This option prevents ALE autocmd commands from being run for particular
|
|
|
|
" filetypes which can cause issues.
|
2017-07-16 00:15:07 +00:00
|
|
|
let g:ale_filetype_blacklist = [
|
|
|
|
\ 'dirvish',
|
|
|
|
\ 'nerdtree',
|
|
|
|
\ 'qf',
|
|
|
|
\ 'tags',
|
|
|
|
\ 'unite',
|
|
|
|
\]
|
2016-10-25 13:09:58 +00:00
|
|
|
|
2016-10-11 22:11:45 +00:00
|
|
|
" This Dictionary configures which linters are enabled for which languages.
|
2017-11-14 19:55:28 +00:00
|
|
|
call ale#Set('linters', {})
|
|
|
|
" This option can be changed to only enable explicitly selected linters.
|
|
|
|
call ale#Set('linters_explicit', 0)
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
|
2017-05-18 12:21:14 +00:00
|
|
|
" This Dictionary configures which functions will be used for fixing problems.
|
|
|
|
let g:ale_fixers = get(g:, 'ale_fixers', {})
|
|
|
|
|
2016-10-11 22:11:45 +00:00
|
|
|
" This Dictionary allows users to set up filetype aliases for new filetypes.
|
|
|
|
let g:ale_linter_aliases = get(g:, 'ale_linter_aliases', {})
|
|
|
|
|
2016-09-08 23:23:26 +00:00
|
|
|
" This flag can be set with a number of milliseconds for delaying the
|
|
|
|
" execution of a linter when text is changed. The timeout will be set and
|
|
|
|
" cleared each time text is changed, so repeated edits won't trigger the
|
|
|
|
" jobs for linting until enough time has passed after editing is done.
|
2016-10-05 08:27:03 +00:00
|
|
|
let g:ale_lint_delay = get(g:, 'ale_lint_delay', 200)
|
2016-09-08 23:23:26 +00:00
|
|
|
|
2017-03-30 22:21:37 +00:00
|
|
|
" This flag can be set to 'never' to disable linting when text is changed.
|
|
|
|
" This flag can also be set to 'insert' or 'normal' to lint when text is
|
|
|
|
" changed only in insert or normal mode respectively.
|
|
|
|
let g:ale_lint_on_text_changed = get(g:, 'ale_lint_on_text_changed', 'always')
|
|
|
|
|
|
|
|
" This flag can be set to 1 to enable linting when leaving insert mode.
|
|
|
|
let g:ale_lint_on_insert_leave = get(g:, 'ale_lint_on_insert_leave', 0)
|
2016-10-11 14:54:14 +00:00
|
|
|
|
2016-09-08 23:23:26 +00:00
|
|
|
" This flag can be set to 0 to disable linting when the buffer is entered.
|
2016-10-04 20:28:54 +00:00
|
|
|
let g:ale_lint_on_enter = get(g:, 'ale_lint_on_enter', 1)
|
2016-09-08 23:23:26 +00:00
|
|
|
|
2016-10-04 20:31:47 +00:00
|
|
|
" This flag can be set to 1 to enable linting when a buffer is written.
|
2017-03-27 19:36:35 +00:00
|
|
|
let g:ale_lint_on_save = get(g:, 'ale_lint_on_save', 1)
|
2017-02-09 18:47:14 +00:00
|
|
|
|
2017-03-27 21:40:25 +00:00
|
|
|
" This flag can be set to 1 to enable linting when the filetype is changed.
|
|
|
|
let g:ale_lint_on_filetype_changed = get(g:, 'ale_lint_on_filetype_changed', 1)
|
|
|
|
|
2017-05-30 20:32:51 +00:00
|
|
|
call ale#Set('fix_on_save', 0)
|
|
|
|
|
2017-02-09 18:47:14 +00:00
|
|
|
" This flag may be set to 0 to disable ale. After ale is loaded, :ALEToggle
|
|
|
|
" should be used instead.
|
|
|
|
let g:ale_enabled = get(g:, 'ale_enabled', 1)
|
2016-10-04 20:31:47 +00:00
|
|
|
|
2017-01-22 12:57:05 +00:00
|
|
|
" These flags dictates if ale uses the quickfix or the loclist (loclist is the
|
|
|
|
" default, quickfix overrides loclist).
|
2016-10-04 20:28:54 +00:00
|
|
|
let g:ale_set_loclist = get(g:, 'ale_set_loclist', 1)
|
2017-01-22 12:57:05 +00:00
|
|
|
let g:ale_set_quickfix = get(g:, 'ale_set_quickfix', 0)
|
|
|
|
|
2017-01-22 14:54:57 +00:00
|
|
|
" This flag dictates if ale open the configured loclist
|
2017-01-22 12:57:05 +00:00
|
|
|
let g:ale_open_list = get(g:, 'ale_open_list', 0)
|
|
|
|
|
|
|
|
" This flag dictates if ale keeps open loclist even if there is no error in loclist
|
|
|
|
let g:ale_keep_list_window_open = get(g:, 'ale_keep_list_window_open', 0)
|
2016-09-08 23:23:26 +00:00
|
|
|
|
2017-06-01 09:39:21 +00:00
|
|
|
" The window size to set for the quickfix and loclist windows
|
|
|
|
call ale#Set('list_window_size', 10)
|
|
|
|
|
2016-09-08 23:23:26 +00:00
|
|
|
" This flag can be set to 0 to disable setting signs.
|
2016-10-04 20:28:54 +00:00
|
|
|
" This is enabled by default only if the 'signs' feature exists.
|
|
|
|
let g:ale_set_signs = get(g:, 'ale_set_signs', has('signs'))
|
2017-10-12 22:04:46 +00:00
|
|
|
" This flag can be set to some integer to control the maximum number of signs
|
|
|
|
" that ALE will set.
|
|
|
|
let g:ale_max_signs = get(g:, 'ale_max_signs', -1)
|
2016-09-08 23:23:26 +00:00
|
|
|
|
2017-05-21 21:42:27 +00:00
|
|
|
" This flag can be set to 1 to enable changing the sign column colors when
|
|
|
|
" there are errors.
|
|
|
|
call ale#Set('change_sign_column_color', 0)
|
|
|
|
|
2017-02-13 00:18:51 +00:00
|
|
|
" This flag can be set to 0 to disable setting error highlights.
|
|
|
|
let g:ale_set_highlights = get(g:, 'ale_set_highlights', has('syntax'))
|
|
|
|
|
2017-05-20 22:32:41 +00:00
|
|
|
" These variables dictate what sign is used to indicate errors and warnings.
|
|
|
|
call ale#Set('sign_error', '>>')
|
|
|
|
call ale#Set('sign_style_error', g:ale_sign_error)
|
|
|
|
call ale#Set('sign_warning', '--')
|
|
|
|
call ale#Set('sign_style_warning', g:ale_sign_warning)
|
|
|
|
call ale#Set('sign_info', g:ale_sign_warning)
|
2016-09-15 12:08:21 +00:00
|
|
|
|
2016-10-11 14:54:14 +00:00
|
|
|
" This variable sets 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)
|
2016-09-26 15:02:21 +00:00
|
|
|
|
|
|
|
" This flag can be set to 1 to keep sign gutter always open
|
2016-10-04 20:28:54 +00:00
|
|
|
let g:ale_sign_column_always = get(g:, 'ale_sign_column_always', 0)
|
2016-10-07 05:49:30 +00:00
|
|
|
|
2017-11-13 00:47:34 +00:00
|
|
|
" A string format for the echoed message
|
2017-11-14 10:28:36 +00:00
|
|
|
call ale#Set('echo_msg_format', '%code: %%s')
|
|
|
|
" The same for the loclist.
|
|
|
|
call ale#Set('loclist_msg_format', g:ale_echo_msg_format)
|
2016-10-10 11:53:54 +00:00
|
|
|
|
|
|
|
" Strings used for severity in the echoed message
|
|
|
|
let g:ale_echo_msg_error_str = get(g:, 'ale_echo_msg_error_str', 'Error')
|
2017-11-12 23:19:26 +00:00
|
|
|
let g:ale_echo_msg_info_str = get(g:, 'ale_echo_msg_info_str', 'Info')
|
2016-10-10 11:53:54 +00:00
|
|
|
let g:ale_echo_msg_warning_str = get(g:, 'ale_echo_msg_warning_str', 'Warning')
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
|
2016-10-11 14:54:14 +00:00
|
|
|
" This flag can be set to 0 to disable echoing when the cursor moves.
|
Implement a more efficient statusbar
The statusbar now keeps its state in a separate variable, in order to
avoid excess iterations. The engine now updates said variable on run,
and a new function is made available for external statusbars to call (to
avoid dependencies on internal implementation details of ale).
To keep things light, the status bar code is not loaded unless invoked
by the user or an external plugin. On the first load it will update
itself from the global loclist, after that, the engine will handle all
updates.
The external integration function, `ale#statusline#Count()`, will return
a tuple in the format [E, W] (where E is errors, W is warnings), unless
no data exists (ie, the plugin doesn't have a linter for a file or has
not run yet), in which case it returns 0/false.
2016-10-11 21:51:01 +00:00
|
|
|
let g:ale_echo_cursor = get(g:, 'ale_echo_cursor', 1)
|
2017-10-12 22:25:41 +00:00
|
|
|
" Controls the milliseconds delay before echoing a message.
|
|
|
|
let g:ale_echo_delay = get(g:, 'ale_echo_delay', 10)
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
|
2017-05-31 21:04:33 +00:00
|
|
|
" This flag can be set to 0 to disable balloon support.
|
|
|
|
call ale#Set('set_balloons', has('balloon_eval'))
|
|
|
|
|
2017-05-24 09:23:13 +00:00
|
|
|
" A deprecated setting for ale#statusline#Status()
|
|
|
|
" See :help ale#statusline#Count() for getting status reports.
|
2016-10-11 14:54:14 +00:00
|
|
|
let g:ale_statusline_format = get(g:, 'ale_statusline_format',
|
|
|
|
\ ['%d error(s)', '%d warning(s)', 'OK']
|
|
|
|
\)
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
|
2016-10-11 14:54:14 +00:00
|
|
|
" This flag can be set to 0 to disable warnings for trailing whitespace
|
|
|
|
let g:ale_warn_about_trailing_whitespace =
|
|
|
|
\ get(g:, 'ale_warn_about_trailing_whitespace', 1)
|
|
|
|
|
2017-02-14 23:44:37 +00:00
|
|
|
" A flag for controlling the maximum size of the command history to store.
|
|
|
|
let g:ale_max_buffer_history_size = get(g:, 'ale_max_buffer_history_size', 20)
|
|
|
|
|
2017-02-16 21:33:44 +00:00
|
|
|
" A flag for enabling or disabling the command history.
|
|
|
|
let g:ale_history_enabled = get(g:, 'ale_history_enabled', 1)
|
|
|
|
|
2017-02-16 23:18:57 +00:00
|
|
|
" A flag for storing the full output of commands in the history.
|
2017-07-03 23:16:53 +00:00
|
|
|
let g:ale_history_log_output = get(g:, 'ale_history_log_output', 1)
|
2017-02-16 23:18:57 +00:00
|
|
|
|
2017-05-26 14:59:43 +00:00
|
|
|
" A dictionary mapping regular expression patterns to arbitrary buffer
|
|
|
|
" variables to be set. Useful for configuration ALE based on filename
|
|
|
|
" patterns.
|
|
|
|
call ale#Set('pattern_options', {})
|
|
|
|
call ale#Set('pattern_options_enabled', !empty(g:ale_pattern_options))
|
|
|
|
|
2017-05-26 20:21:15 +00:00
|
|
|
" A maximum file size for checking for errors.
|
|
|
|
call ale#Set('maximum_file_size', 0)
|
|
|
|
|
2017-06-14 16:59:13 +00:00
|
|
|
" Remapping of linter problems.
|
|
|
|
call ale#Set('type_map', {})
|
|
|
|
|
2017-07-01 23:28:00 +00:00
|
|
|
" Enable automatic completion with LSP servers and tsserver
|
|
|
|
call ale#Set('completion_enabled', 0)
|
2017-08-11 09:50:59 +00:00
|
|
|
call ale#Set('completion_delay', 100)
|
2017-08-18 21:34:18 +00:00
|
|
|
call ale#Set('completion_max_suggestions', 50)
|
2017-07-01 23:28:00 +00:00
|
|
|
|
2017-05-31 21:04:33 +00:00
|
|
|
if g:ale_set_balloons
|
|
|
|
call ale#balloon#Enable()
|
|
|
|
endif
|
|
|
|
|
2017-07-01 23:28:00 +00:00
|
|
|
if g:ale_completion_enabled
|
|
|
|
call ale#completion#Enable()
|
|
|
|
endif
|
|
|
|
|
2016-10-24 21:09:41 +00:00
|
|
|
" Define commands for moving through warnings and errors.
|
2017-03-28 17:27:07 +00:00
|
|
|
command! -bar ALEPrevious :call ale#loclist_jumping#Jump('before', 0)
|
|
|
|
command! -bar ALEPreviousWrap :call ale#loclist_jumping#Jump('before', 1)
|
|
|
|
command! -bar ALENext :call ale#loclist_jumping#Jump('after', 0)
|
|
|
|
command! -bar ALENextWrap :call ale#loclist_jumping#Jump('after', 1)
|
2017-06-03 11:45:52 +00:00
|
|
|
command! -bar ALEFirst :call ale#loclist_jumping#JumpToIndex(0)
|
|
|
|
command! -bar ALELast :call ale#loclist_jumping#JumpToIndex(-1)
|
2016-10-24 21:09:41 +00:00
|
|
|
|
2017-03-02 07:14:30 +00:00
|
|
|
" A command for showing error details.
|
2017-03-28 17:27:07 +00:00
|
|
|
command! -bar ALEDetail :call ale#cursor#ShowCursorDetail()
|
2017-03-02 07:14:30 +00:00
|
|
|
|
2017-03-28 22:04:58 +00:00
|
|
|
" Define commands for turning ALE on or off.
|
2017-10-28 14:41:14 +00:00
|
|
|
command! -bar ALEToggle :call ale#toggle#Toggle()
|
|
|
|
command! -bar ALEEnable :call ale#toggle#Enable()
|
|
|
|
command! -bar ALEDisable :call ale#toggle#Disable()
|
2017-10-29 17:03:29 +00:00
|
|
|
command! -bar ALEReset :call ale#toggle#Reset()
|
2017-10-28 18:36:16 +00:00
|
|
|
" Commands for turning ALE on or off for a buffer.
|
|
|
|
command! -bar ALEToggleBuffer :call ale#toggle#ToggleBuffer(bufnr(''))
|
|
|
|
command! -bar ALEEnableBuffer :call ale#toggle#EnableBuffer(bufnr(''))
|
|
|
|
command! -bar ALEDisableBuffer :call ale#toggle#DisableBuffer(bufnr(''))
|
2017-10-29 17:03:29 +00:00
|
|
|
command! -bar ALEResetBuffer :call ale#toggle#ResetBuffer(bufnr(''))
|
2017-03-28 22:04:58 +00:00
|
|
|
|
2017-02-28 09:10:58 +00:00
|
|
|
" A command for linting manually.
|
2017-03-28 17:27:07 +00:00
|
|
|
command! -bar ALELint :call ale#Queue(0, 'lint_file')
|
2017-02-09 18:47:14 +00:00
|
|
|
|
2017-02-28 09:10:58 +00:00
|
|
|
" Define a command to get information about current filetype.
|
2017-03-28 17:27:07 +00:00
|
|
|
command! -bar ALEInfo :call ale#debugging#Info()
|
2017-02-14 23:45:22 +00:00
|
|
|
" The same, but copy output to your clipboard.
|
2017-03-28 17:27:07 +00:00
|
|
|
command! -bar ALEInfoToClipboard :call ale#debugging#InfoToClipboard()
|
2017-01-24 15:50:49 +00:00
|
|
|
|
2017-05-18 12:21:14 +00:00
|
|
|
" Fix problems in files.
|
|
|
|
command! -bar ALEFix :call ale#fix#Fix()
|
2017-05-20 17:56:44 +00:00
|
|
|
" Suggest registered functions to use for fixing problems.
|
|
|
|
command! -bar ALEFixSuggest :call ale#fix#registry#Suggest(&filetype)
|
2017-05-18 12:21:14 +00:00
|
|
|
|
2017-11-21 00:21:45 +00:00
|
|
|
" Go to definition for tsserver and LSP
|
|
|
|
command! -bar ALEGoToDefinition :call ale#definition#GoTo({})
|
|
|
|
command! -bar ALEGoToDefinitionInTab :call ale#definition#GoTo({'open_in_tab': 1})
|
|
|
|
|
2016-10-24 21:09:41 +00:00
|
|
|
" <Plug> mappings for commands
|
|
|
|
nnoremap <silent> <Plug>(ale_previous) :ALEPrevious<Return>
|
|
|
|
nnoremap <silent> <Plug>(ale_previous_wrap) :ALEPreviousWrap<Return>
|
|
|
|
nnoremap <silent> <Plug>(ale_next) :ALENext<Return>
|
|
|
|
nnoremap <silent> <Plug>(ale_next_wrap) :ALENextWrap<Return>
|
2017-06-03 11:45:52 +00:00
|
|
|
nnoremap <silent> <Plug>(ale_first) :ALEFirst<Return>
|
|
|
|
nnoremap <silent> <Plug>(ale_last) :ALELast<Return>
|
2017-02-09 18:47:14 +00:00
|
|
|
nnoremap <silent> <Plug>(ale_toggle) :ALEToggle<Return>
|
2017-10-29 10:55:02 +00:00
|
|
|
nnoremap <silent> <Plug>(ale_enable) :ALEEnable<Return>
|
|
|
|
nnoremap <silent> <Plug>(ale_disable) :ALEDisable<Return>
|
2017-10-29 17:03:29 +00:00
|
|
|
nnoremap <silent> <Plug>(ale_reset) :ALEReset<Return>
|
2017-10-29 10:55:02 +00:00
|
|
|
nnoremap <silent> <Plug>(ale_toggle_buffer) :ALEToggleBuffer<Return>
|
|
|
|
nnoremap <silent> <Plug>(ale_enable_buffer) :ALEEnableBuffer<Return>
|
|
|
|
nnoremap <silent> <Plug>(ale_disable_buffer) :ALEDisableBuffer<Return>
|
2017-10-29 17:03:29 +00:00
|
|
|
nnoremap <silent> <Plug>(ale_reset_buffer) :ALEResetBuffer<Return>
|
2017-02-28 09:10:58 +00:00
|
|
|
nnoremap <silent> <Plug>(ale_lint) :ALELint<Return>
|
2017-03-02 07:14:30 +00:00
|
|
|
nnoremap <silent> <Plug>(ale_detail) :ALEDetail<Return>
|
2017-05-18 12:21:14 +00:00
|
|
|
nnoremap <silent> <Plug>(ale_fix) :ALEFix<Return>
|
2017-11-21 00:21:45 +00:00
|
|
|
nnoremap <silent> <Plug>(ale_go_to_definition) :ALEGoToDefinition<Return>
|
|
|
|
nnoremap <silent> <Plug>(ale_go_to_definition_in_tab) :ALEGoToDefinitionInTab<Return>
|
2016-10-24 21:09:41 +00:00
|
|
|
|
2017-10-28 14:41:14 +00:00
|
|
|
" Set up autocmd groups now.
|
|
|
|
call ale#toggle#InitAuGroups()
|
|
|
|
|
2016-10-11 14:54:14 +00:00
|
|
|
" Housekeeping
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
|
Implement a more efficient statusbar
The statusbar now keeps its state in a separate variable, in order to
avoid excess iterations. The engine now updates said variable on run,
and a new function is made available for external statusbars to call (to
avoid dependencies on internal implementation details of ale).
To keep things light, the status bar code is not loaded unless invoked
by the user or an external plugin. On the first load it will update
itself from the global loclist, after that, the engine will handle all
updates.
The external integration function, `ale#statusline#Count()`, will return
a tuple in the format [E, W] (where E is errors, W is warnings), unless
no data exists (ie, the plugin doesn't have a linter for a file or has
not run yet), in which case it returns 0/false.
2016-10-11 21:51:01 +00:00
|
|
|
augroup ALECleanupGroup
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
autocmd!
|
2016-10-11 14:54:14 +00:00
|
|
|
" Clean up buffers automatically when they are unloaded.
|
2017-07-07 22:47:41 +00:00
|
|
|
autocmd BufUnload * call ale#engine#Cleanup(str2nr(expand('<abuf>')))
|
2017-10-14 22:22:13 +00:00
|
|
|
autocmd QuitPre * call ale#events#QuitEvent(str2nr(expand('<abuf>')))
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
augroup END
|
|
|
|
|
2016-10-11 14:54:14 +00:00
|
|
|
" Backwards Compatibility
|
2016-10-10 18:56:05 +00:00
|
|
|
|
2017-01-22 14:54:57 +00:00
|
|
|
function! ALELint(delay) abort
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
call ale#Queue(a:delay)
|
|
|
|
endfunction
|
2016-10-11 14:54:14 +00:00
|
|
|
|
2017-01-22 14:54:57 +00:00
|
|
|
function! ALEGetStatusLine() abort
|
2016-10-11 19:24:43 +00:00
|
|
|
return ale#statusline#Status()
|
First pass at optimizing ale to autoload (#80)
* First pass at optimizing ale to autoload
First off, the structure/function names should be revised a bit,
but I will wait for @w0rp's input before unifying the naming style.
Second off, the docs probably need some more work, I just did some
simple find-and-replace work.
With that said, this pull brings major performance gains for ale. On my
slowest system, fully loading ale and all its code takes around 150ms.
I have moved all of ale's autoload-able code to autoload/, and in
addition, implemented lazy-loading of linters. This brings load time on
that same system down to 5ms.
The only downside of lazy loading is that `g:ale_linters` cannot be
changed at runtime; however, it also speeds up performance at runtime by
simplfying the logic greatly.
Please let me know what you think!
Closes #59
* Address Travis/Vint errors
For some reason, ale isn't running vint for me...
* Incorporate feedback, make fixes
Lazy-loading logic is much improved.
* Add header comments; remove incorrect workaround
* Remove unneeded plugin guards
* Fix lazy-loading linter logic
Set the wrong variable....
* Fix capitialization
2016-10-10 18:51:29 +00:00
|
|
|
endfunction
|