From 3b28509d4713f7f650dff0ff07864866b62e0792 Mon Sep 17 00:00:00 2001 From: pr3c0g Date: Mon, 15 Mar 2021 13:24:48 +0000 Subject: [PATCH] This paragraph is different from the one in README.MD, which is clearer in my opinion. --- FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index 273acd7..02014a0 100644 --- a/FAQ.md +++ b/FAQ.md @@ -8,7 +8,7 @@ Many optimizations have been made such that the majority of users will not see a The [minivimrc](https://github.com/bling/minivimrc) project has some helper mappings to troubleshoot performance related issues. -If you don't want all the bells and whistles enabled by default, you can define a value for g:airline_extensions (e.g. `:let g:airline_extensions = []`). When this variable is defined, only the extensions listed will be loaded; an empty array will disable all extensions. +If you don't want all the bells and whistles enabled by default, you can define a value for g:airline_extensions. When this variable is defined, only the extensions listed will be loaded; an empty array would effectively disable all extensions (e.g. :let g:airline_extensions = []). Also, you can enable caching of the various syntax highlighting groups. This will try to prevent some of the more expensive `:hi` calls in Vim, which seem to be expensive in the Vim core at the expense of possibly not being hundred percent correct all the times (especially if you often change highlighting groups yourself using `:hi` commands). To set this up do `:let g:airline_highlighting_cache = 1`. A `:AirlineRefresh` will however clear the cache.