diff options
author | Steven Rostedt (VMware) <[email protected]> | 2021-06-28 19:33:47 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2021-06-29 10:53:45 -0700 |
commit | d1b1f1e627c0085fb2e2b5690929a3d53879cc67 (patch) | |
tree | 636700225dfab7a540c6c8500380844c8a723874 | |
parent | b83c8ba40cebcee1d07cb852c23d616acf8988b7 (diff) |
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/[email protected]
Signed-off-by: Steven Rostedt (VMware) <[email protected]>
Cc: Masahiro Yamada <[email protected]>
Cc: "John (Warthog9) Hawley" <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rwxr-xr-x | scripts/kconfig/streamline_config.pl | 2 |
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 |