From c62a19be1ed2da9a6e881e56f81f87f1cd6a9ce0 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Wed, 13 Jul 2022 20:37:47 +0200 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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