diff options
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r-- | src/nvim/fileio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index dbe4a144df..e10f7fd2a2 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -5581,6 +5581,8 @@ static void au_del_group(char_u *name) i = au_find_group(name); if (i == AUGROUP_ERROR) { // the group doesn't exist EMSG2(_("E367: No such group: \"%s\""), name); + } else if (i == current_augroup) { + EMSG(_("E936: Cannot delete the current group")); } else { event_T event; AutoPat *ap; |