diff options
author | delphinus <me@delphinus.dev> | 2019-06-25 17:57:38 +0900 |
---|---|---|
committer | delphinus <me@delphinus.dev> | 2019-06-25 18:04:04 +0900 |
commit | a3521de64e8dfc2e8dbfc562fbc73502ba3e09ce (patch) | |
tree | 560d06bf77e7cecf111acc512c66761475acf572 /autoload | |
parent | 4e1c46947dca552d86cd49a80714237801e01998 (diff) | |
download | ale-a3521de64e8dfc2e8dbfc562fbc73502ba3e09ce.zip |
Use input_patterns & add comments for updating it
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/completion.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/autoload/ale/completion.vim b/autoload/ale/completion.vim index 284b1e08..f0d6425d 100644 --- a/autoload/ale/completion.vim +++ b/autoload/ale/completion.vim @@ -59,7 +59,8 @@ let s:omni_start_map = { \ '<default>': '\v[a-zA-Z$_][a-zA-Z$_0-9]*$', \} -" A map of exact characters for triggering LSP completions. +" A map of exact characters for triggering LSP completions. Do not forget to +" update self.input_patterns in ale.py in updating entries in this map. let s:trigger_character_map = { \ '<default>': ['.'], \ 'typescript': ['.', '''', '"'], |