summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorArnold Chand <creativenull@outlook.com>2021-07-25 00:39:56 -0400
committerGitHub <noreply@github.com>2021-07-25 13:39:56 +0900
commit8c591996a83d623fb158fe090acbd89dabbfaf06 (patch)
tree048374b84da988f9a31297538f978a3957bb96fe /plugin
parent7d8fb2ba1716a744446b811fc278ecf30d4eb771 (diff)
downloadale-8c591996a83d623fb158fe090acbd89dabbfaf06.zip
Add importMap option to deno Initialization Options (#3827)
* feat(deno): move init options to handlers * feat(deno): add deno lsp support for js files * feat(deno): use default map option * feat(docs): add deno import map option * feat(deno): add tests for importMap option * fix(deno): use full path in importMap * feat(deno): remove deno as linter for js, separate PR * fix(deno): test for executable * fix(deno-test): include filename to simplify function
Diffstat (limited to 'plugin')
-rw-r--r--plugin/ale.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim
index 0268bc99..d19824b1 100644
--- a/plugin/ale.vim
+++ b/plugin/ale.vim
@@ -178,6 +178,9 @@ let g:ale_python_auto_poetry = get(g:, 'ale_python_auto_poetry', 0)
" This variable can be overridden to set the GO111MODULE environment variable.
let g:ale_go_go111module = get(g:, 'ale_go_go111module', '')
+" Default executable for deno, needed set before plugin start
+let g:ale_deno_executable = get(g:, 'ale_deno_executable', 'deno')
+
" If 1, enable a popup menu for commands.
let g:ale_popup_menu_enabled = get(g:, 'ale_popup_menu_enabled', has('gui_running'))