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.