summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSteven Rostedt (VMware) <rostedt@goodmis.org>2021-03-22 17:47:37 -0400
committerSteven Rostedt (VMware) <rostedt@goodmis.org>2021-03-22 17:51:16 -0400
commitb700fc3a63f16d6e130433fdcbe3f5f223c7662c (patch)
tree332f49c7b0edfed2a1e4a67ac7b9e724dd7bc032 /scripts
parent2cf3af7aa6df0e173f2bff57b73427bb05b30ba0 (diff)
downloadlinux-b700fc3a63f16d6e130433fdcbe3f5f223c7662c.tar.gz
linux-b700fc3a63f16d6e130433fdcbe3f5f223c7662c.tar.xz
scripts/recordmcount.pl: Make vim and emacs indent the same
By default, emacs indents Perl files with 4 spaces, but will use tabs where 8 spaces are used. Add a vim command of softtabstop=4, to make vim behave the same. This should remove the issue of developers using vim having causing different indentation. "John (Warthog9) Hawley" <warthog9@kernel.org> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/recordmcount.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl
index 5652da5e345e..a5429b3dac24 100755
--- a/scripts/recordmcount.pl
+++ b/scripts/recordmcount.pl
@@ -642,3 +642,5 @@ if ($#converts >= 0) {
`$rm $mcount_o $mcount_s`;
exit(0);
+
+# vim: softtabstop=4