aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSteven Rostedt (VMware) <rostedt@goodmis.org>2021-06-28 19:33:47 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2021-06-29 10:53:45 -0700
commitd1b1f1e627c0085fb2e2b5690929a3d53879cc67 (patch)
tree636700225dfab7a540c6c8500380844c8a723874 /scripts
parentstreamline_config.pl: make spacing consistent (diff)
downloadlinux-dev-d1b1f1e627c0085fb2e2b5690929a3d53879cc67.tar.xz
linux-dev-d1b1f1e627c0085fb2e2b5690929a3d53879cc67.zip
streamline_config.pl: add softtabstop=4 for vim users
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>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/kconfig/streamline_config.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
index 2e65aa9edf97..1a5fea0519eb 100755
--- a/scripts/kconfig/streamline_config.pl
+++ b/scripts/kconfig/streamline_config.pl
@@ -702,3 +702,5 @@ foreach my $module (keys(%modules)) {
print STDERR "\n";
}
}
+
+# vim: softtabstop=4