From 9a019e2342900e10a98538ccc9b18e28b3143a2b Mon Sep 17 00:00:00 2001 From: w0rp Date: Tue, 25 Oct 2016 15:01:10 +0100 Subject: [PATCH] Fix a mistake in the FAQ code for the autocmd event --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c9ef131..f881cf1 100644 --- a/README.md +++ b/README.md @@ -287,6 +287,6 @@ autocmd event can be used to call arbitrary functions after ALE stops linting. ```vim augroup YourGroup autocmd! - autocmd ALELint * call YourFunction() + autocmd ALELint call YourFunction() augroup END ```