diff --git a/FAQ.md b/FAQ.md index 08507c0..f178a2c 100644 --- a/FAQ.md +++ b/FAQ.md @@ -155,4 +155,10 @@ 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. \ No newline at end of file +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` \ No newline at end of file