diff options
author | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2021-03-22 22:47:37 +0100 |
---|---|---|
committer | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2021-03-22 22:51:16 +0100 |
commit | b700fc3a63f16d6e130433fdcbe3f5f223c7662c (patch) | |
tree | 332f49c7b0edfed2a1e4a67ac7b9e724dd7bc032 /scripts | |
parent | scripts/recordmcount.pl: Make indent spacing consistent (diff) | |
download | linux-b700fc3a63f16d6e130433fdcbe3f5f223c7662c.tar.xz linux-b700fc3a63f16d6e130433fdcbe3f5f223c7662c.zip |
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-x | scripts/recordmcount.pl | 2 |
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 |