diff options
author | Steven Rostedt (VMware) | 2021-03-22 17:47:37 -0400 |
---|---|---|
committer | Steven Rostedt (VMware) | 2021-03-22 17:51:16 -0400 |
commit | b700fc3a63f16d6e130433fdcbe3f5f223c7662c (patch) | |
tree | 332f49c7b0edfed2a1e4a67ac7b9e724dd7bc032 /scripts/recordmcount.pl | |
parent | 2cf3af7aa6df0e173f2bff57b73427bb05b30ba0 (diff) |
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/recordmcount.pl')
-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 |