emacs align-regexp with spaces instead of tabs
Asked Answered
B

1

10

I use M-x align-regexp in emacs to prettify my Perl code, but by default it is using tabs instead of spaces, which is something one should not do according to Perl critic.

Is there a way to change the behaviour of align-regexp so that it fills in with the right amount of spaces instead of tabs?

Bounce answered 28/3, 2014 at 10:21 Comment(1)
Try (setq indent-tabs-mode nil).Gasify
G
10

In general you should avoid using advice, but since align.el directly reads the value of indent-tabs-mode, it's probably the best way:

(defadvice align-regexp (around align-regexp-with-spaces activate)
  (let ((indent-tabs-mode nil))
    ad-do-it))

Here was my original version:

(defadvice align-regexp (around align-regexp-with-spaces activate)
  (let ((old-indent-tabs-mode indent-tabs-mode))
    (setq indent-tabs-mode nil)
    ad-do-it
    (setq indent-tabs-mode old-indent-tabs-mode)))

As @Phils pointed out, this is unnecessarily complex and less fool proof, so use the code at the top of the post.

Gott answered 28/3, 2014 at 10:22 Comment(1)
Uh, just let-bind indent-tabs-mode directly. Like this: https://mcmap.net/q/468059/-in-emacs-how-to-line-up-equals-signs-in-a-series-of-initialization-statements. What you're doing is almost identical, but unnecessarily long-winded, and relying (potentially unsafely) on an additional variable.Nannana

© 2022 - 2024 — McMap. All rights reserved.