Re: [PATCH 2/2] streamline_config.pl: Add softtabstop=4 for vim users

From: Steven Rostedt
Date: Thu Mar 25 2021 - 11:11:02 EST


On Thu, 25 Mar 2021 23:09:38 +0900
Masahiro Yamada <masahiroy@xxxxxxxxxx> wrote:

> > > Not all people use vim.
> >
> > I don't use it either. I was trying to make vim match emacs. Of course for
> > those that use something else, it wont help. I'm curious, what's your main
> > editor that you use?
>
>
> I use emacs.
>
> I have some setups in my ~/.emacs
> although I am not an expert of emacs lisp.
>
>
> (defalias 'perl-mode 'cperl-mode)
>
> (add-hook 'cperl-mode-hook
> (lambda()
> (setq cperl-indent-level 8)
> (setq cperl-tab-always-indent t)
> (setq tab-width 8)
> (setq indent-tabs-mode t)
> ))
>
>
>
>
> Then, emacs can understand that
> my preference is tab-indentation
> with 8 character width.

Ah, so you edited your perl-mode to not use the emacs default. I never did.

I was just letting you know where I picked up the "mix up space-indentation
and tab-indentation" from ;-) I'm sure if you removed those lines, you
would then see why I use that "standard".

I've been doing it for so long on all my perl files, it's been engraved in
me to do it that way whenever I work on perl.

-- Steve