Updated FAQ (markdown)

Christian Brabandt 2022-07-13 20:37:47 +02:00
parent 4cfc972dd3
commit c62a19be1e

6
FAQ.md

@ -156,3 +156,9 @@ You can disable them, if you put this option into your `.vimrc`
`let g:airline_skip_empty_sections = 1`
This poses a small performance penalty, however.
#### How can I disable certain autocommands?
You can simply set the `&eventignore` option to the events that you'd like to ignore. For example to disable the `FocusGained` and `FocusLost` events (which some terminals may not be able to handle correctly) you would set in your `.vimrc`:
`set eventignore+=FocusGained,FocusLost`