From 5fe45f32199949b6eddfc0da57dd4840ee67d385 Mon Sep 17 00:00:00 2001 From: Matt Black Date: Sun, 31 Mar 2019 07:36:02 +1100 Subject: Pyflakes is supported --- supported-tools.md | 1 + 1 file changed, 1 insertion(+) diff --git a/supported-tools.md b/supported-tools.md index 0f60c4ce..d2010e03 100644 --- a/supported-tools.md +++ b/supported-tools.md @@ -346,6 +346,7 @@ formatting. * [prospector](https://github.com/PyCQA/prospector) :warning: * [pycodestyle](https://github.com/PyCQA/pycodestyle) :warning: * [pydocstyle](https://www.pydocstyle.org/) :warning: + * [pyflakes](https://github.com/PyCQA/pyflakes) * [pylama](https://github.com/klen/pylama) :floppy_disk: * [pylint](https://www.pylint.org/) :floppy_disk: * [pyls](https://github.com/palantir/python-language-server) :warning: -- cgit v1.2.3 From 2f1d1b78268b4e5d3531b9f8a0168c2c5338f221 Mon Sep 17 00:00:00 2001 From: Matt Black Date: Sun, 31 Mar 2019 12:02:18 +1100 Subject: FAQ: how can I see what is currently enabled? --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 047f9691..49f30af4 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,7 @@ other content at [w0rp.com](https://w0rp.com). 15. [How can I configure my C or C++ project?](#faq-c-configuration) 16. [How can I configure ALE differently for different buffers?](#faq-buffer-configuration) 17. [How can I configure the height of the list in which ALE displays errors?](#faq-list-window-height) + 18. [How can I see what ALE has configured for the current file?](#faq-get-info) @@ -779,3 +780,13 @@ To set a default height for the error list, use the `g:ale_list_window_size` var " Show 5 lines of errors (default: 10) let g:ale_list_window_size = 5 ``` + + + +### 5.xviii. How can I see what ALE has configured for the current file? + +Run the following to see what is currently configured: + +```vim +:ALEInfo +``` -- cgit v1.2.3