Fix vi modelines (#989)

At least in neovim, `│vi:` is not recognized as a modeline because it
has no preceding whitespace. After fixing this, opening a file yields
an error because `net` is not an option. (`noet`, however, is.)
This commit is contained in:
Jōshin 2023-12-05 17:37:54 -05:00 committed by GitHub
parent 221a27836b
commit 394d998315
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3601 changed files with 3602 additions and 3602 deletions

View file

@ -1,5 +1,5 @@
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-│
vi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :vi
vi: set noet ft=c ts=4 sts=4 sw=4 fenc=utf-8 :vi
Copyright (C) 2005-2010 Gerhard Häring <gh@ghaering.de>