mirror of
https://github.com/dense-analysis/ale.git
synced 2026-02-20 00:28:35 +08:00
Implement Lua ALE setup & overhaul documentation
1. Add ale.setup and ale.setup.buffer for pure Lua configuration. 2. Update many global settings to use Booleans instead of numbers to make types easiert to work with in Lua. 3. Radically reformat documentation and fix errors to make documentation more usable for Neovim users.
This commit is contained in:
@@ -8,46 +8,64 @@ purescript-language-server *ale-purescript-language-server*
|
||||
PureScript Language Server
|
||||
(https://github.com/nwolverson/purescript-language-server)
|
||||
|
||||
g:ale_purescript_ls_executable g:ale_purescript_ls_executable
|
||||
b:ale_purescript_ls_executable
|
||||
*ale-options.purescript_ls_executable*
|
||||
*g:ale_purescript_ls_executable*
|
||||
*b:ale_purescript_ls_executable*
|
||||
purescript_ls_executable
|
||||
g:ale_purescript_ls_executable
|
||||
Type: |String|
|
||||
Default: `'purescript-language-server'`
|
||||
|
||||
PureScript language server executable.
|
||||
|
||||
g:ale_purescript_ls_config g:ale_purescript_ls_config
|
||||
b:ale_purescript_ls_config
|
||||
*ale-options.purescript_ls_config*
|
||||
*g:ale_purescript_ls_config*
|
||||
*b:ale_purescript_ls_config*
|
||||
purescript_ls_config
|
||||
g:ale_purescript_ls_config
|
||||
Type: |Dictionary|
|
||||
Default: `{}`
|
||||
|
||||
Dictionary containing configuration settings that will be passed to the
|
||||
language server. For example, with a spago project:
|
||||
{
|
||||
\ 'purescript': {
|
||||
\ 'addSpagoSources': v:true,
|
||||
\ 'addNpmPath': v:true,
|
||||
\ 'buildCommand': 'spago --quiet build --purs-args --json-errors'
|
||||
\ }
|
||||
\}
|
||||
language server. For example, with a spago project: >
|
||||
|
||||
let g:ale_purescript_ls_config = {
|
||||
\ 'purescript': {
|
||||
\ 'addSpagoSources': v:true,
|
||||
\ 'addNpmPath': v:true,
|
||||
\ 'buildCommand': 'spago --quiet build --purs-args --json-errors',
|
||||
\ },
|
||||
\}
|
||||
<
|
||||
|
||||
===============================================================================
|
||||
purs-tidy *ale-purescript-tidy*
|
||||
|
||||
g:ale_purescript_tidy_executable *g:ale_purescript_tidy_executable*
|
||||
*ale-options.purescript_tidy_executable*
|
||||
*g:ale_purescript_tidy_executable*
|
||||
*b:ale_purescript_tidy_executable*
|
||||
purescript_tidy_executable
|
||||
g:ale_purescript_tidy_executable
|
||||
Type: |String|
|
||||
Default: `'purs-tidy'`
|
||||
|
||||
This variable can be changed to use a different executable for purs-tidy.
|
||||
|
||||
g:ale_purescript_tidy_use_global *g:ale_purescript_tidy_use_global*
|
||||
*ale-options.purescript_tidy_use_global*
|
||||
*g:ale_purescript_tidy_use_global*
|
||||
*b:ale_purescript_tidy_use_global*
|
||||
purescript_tidy_use_global
|
||||
g:ale_purescript_tidy_use_global
|
||||
Type: |Number|
|
||||
Default: `get(g:, 'ale_use_global_executables', 0)`
|
||||
|
||||
See |ale-integrations-local-executables|
|
||||
|
||||
g:ale_purescript_tidy_options *g:ale_purescript_tidy_options*
|
||||
*ale-options.purescript_tidy_options*
|
||||
*g:ale_purescript_tidy_options*
|
||||
*b:ale_purescript_tidy_options*
|
||||
purescript_tidy_options
|
||||
g:ale_purescript_tidy_options
|
||||
Type: |String|
|
||||
Default: `''`
|
||||
|
||||
@@ -56,14 +74,20 @@ g:ale_purescript_tidy_options *g:ale_purescript_tidy_options*
|
||||
>
|
||||
let g:ale_purescript_options = '--indent 3'
|
||||
<
|
||||
|
||||
===============================================================================
|
||||
purty *ale-purescript-purty*
|
||||
|
||||
g:ale_purescript_purty_executable *g:ale_purescript_purty_executable*
|
||||
*ale-options.purescript_purty_executable*
|
||||
*g:ale_purescript_purty_executable*
|
||||
*b:ale_purescript_purty_executable*
|
||||
purescript_purty_executable
|
||||
g:ale_purescript_purty_executable
|
||||
Type: |String|
|
||||
Default: `'purty'`
|
||||
|
||||
This variable can be changed to use a different executable for purty.
|
||||
|
||||
|
||||
===============================================================================
|
||||
vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl:
|
||||
|
||||
Reference in New Issue
Block a user