From 9eb2e2c3a321313fd7ffb74a6bcbb7f068178a95 Mon Sep 17 00:00:00 2001 From: Ryan Date: Tue, 29 Mar 2022 10:10:26 -0400 Subject: [PATCH] Fix BufWritePre autocmd in README I'm just copying the snippet from #134, because I've run into the same issue and the proposed fix worked for me --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ed2fd8b..9faa569b 100644 --- a/README.md +++ b/README.md @@ -209,7 +209,7 @@ example: ```viml augroup fmt autocmd! - autocmd BufWritePre * undojoin | Neoformat + autocmd BufWritePre * try | undojoin | Neoformat | catch /E790/ | Neoformat | endtry augroup END ```