streamline_config.pl: add softtabstop=4 for vim users
authorSteven Rostedt (VMware) <rostedt@goodmis.org>
Tue, 29 Jun 2021 02:33:47 +0000 (19:33 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 29 Jun 2021 17:53:45 +0000 (10:53 -0700)
The tab stop for Perl files is by default (at least in emacs) to be 4
spaces, where a tab is used for all 8 spaces.  Add a local variable
comment to make vim do the same by default, and this will help keep the
file consistent in the future when others edit it via vim and not emacs.

Link: https://lkml.kernel.org/r/20210322214032.293992979@goodmis.org
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Cc: Masahiro Yamada <masahiroy@kernel.org>
Cc: "John (Warthog9) Hawley" <warthog9@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
scripts/kconfig/streamline_config.pl

index 2e65aa9edf97d5e28e4e822dc0fc2ff74f32c857..1a5fea0519eb4d0233b900f55d9c4db984477904 100755 (executable)
@@ -702,3 +702,5 @@ foreach my $module (keys(%modules)) {
        print STDERR "\n";
     }
 }
+
+# vim: softtabstop=4